Download Latest Version v9.10.0 Add Coupon API Support to Messaging API source code.tar.gz (3.8 MB)
Email in envelope

Get an email when there's a new version of LINE Messaging API SDK for Java

Home / v9.8.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2025-06-05 4.8 kB
v9.8.0 Allow setting a custom EventListener in ApiClientBuilder source code.tar.gz 2025-06-05 3.8 MB
v9.8.0 Allow setting a custom EventListener in ApiClientBuilder source code.zip 2025-06-05 4.5 MB
Totals: 3 Items   8.2 MB 0

What's Changed

With this release, SDK users will be able to set a custom EventListener to suit their needs when creating the API client. For Example, to enhance the observability of API calls in your system, you can leverage the OkHttpMetricsEventListener provided by Micrometer to record HTTP request metrics:

:::java
OkHttpMetricsEventListener okHttpMetricsEventListener = OkHttpMetricsEventListener
      .builder(registry, "okhttp.requests")
      .build();
MessagingApiClient messagingApiClient = MessagingApiClient.builder("your access token")
      .setEventListener(okHttpMetricsEventListener)
      .build();

line-openapi updates

Dependency updates

Other Changes

New Contributors

Full Changelog: https://github.com/line/line-bot-sdk-java/compare/v9.7.1...v9.8.0


This release is prepared by @eucyt

Source: README.md, updated 2025-06-05