You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HMAC-SHA1 will no longer be accepted as a signature method for TBA integrations. Before your account is upgraded to 2023.1, you must update your TBA integrations to use the HMAC-SHA256 signature method. Please solve the issue
The text was updated successfully, but these errors were encountered:
signpost-core has a HmacSha256MessageSigner, and any extension of the AbstractOAuthConsumer (such as OkHttpOAuthConsumer) can set its message signer. Thanks to this, you can use the HMAC-SHA256 signature method in your consumer simply by adding a dependency on the latest version of signpost-core and doing the following:
OkHttpOAuthConsumer consumer = new OkHttpOAuthConsumer(consumerKey, consumerSecret);
consumer.setMessageSigner(new HmacSha256MessageSigner());
Would be nice to initialize the consumer with the appropriate signer, but that may be something to bring up with the signpost folks.
HMAC-SHA1 will no longer be accepted as a signature method for TBA integrations. Before your account is upgraded to 2023.1, you must update your TBA integrations to use the HMAC-SHA256 signature method. Please solve the issue
The text was updated successfully, but these errors were encountered: