Download Latest Version v10.1.0 Support Message Edited Webhook source code.zip (4.5 MB)
Email in envelope

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

Home / v9.15.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2026-04-03 8.9 kB
v9.15.0 Add wrapper methods for JWT assertion and client secret authentication source code.tar.gz 2026-04-03 3.8 MB
v9.15.0 Add wrapper methods for JWT assertion and client secret authentication source code.zip 2026-04-03 4.5 MB
Totals: 3 Items   8.3 MB 0

What's Changed

Added feature

This release adds wrapper methods for ChannelAccessTokenClient#issueStatelessChannelToken, making stateless channel access token issuance simpler for both JWT assertion and client secret authentication. With this release, you don't have to pass null.

:::diff

- var token = client.issueStatelessChannelToken(
-     "client_credentials",
-     "urn:ietf:params:oauth:client-assertion-type:jwt-bearer",
-     clientAssertion,
-     null,
-     null
- );
+ var token = client.issueStatelessChannelTokenByJWTAssertion(
+     clientAssertion
+ );

:::diff

- var token = client.issueStatelessChannelToken(
-     "client_credentials",
-     null,
-     null,
-     channelId,
-     channelSecret
- );
+ var token = client.issueStatelessChannelTokenByClientSecret(
+     channelId,
+     channelSecret
+ );

line-openapi updates

Dependency updates

Other Changes

Full Changelog: https://github.com/line/line-bot-sdk-java/compare/v9.14.0...v9.15.0


This release is prepared by @habara-k

Source: README.md, updated 2026-04-03