recurly-client-java
recurly-client-java copied to clipboard
Java library for Recurly's V3 API
While upgrading Java in our project, we've noticed that the Recurly client is still using Joda-Time. Example of use: https://github.com/recurly/recurly-client-java/blob/v3-v2021-02-25/src/main/java/com/recurly/v3/resources/Invoice.java#L14C8-L14C30 On the Joda-Time [website](https://www.joda.org/joda-time/), it is noted to migrate to...
Good day! https://github.com/recurly/recurly-client-java/blob/9fba0d3393496ee6b269131a139ef92d7dd82a4a/src/main/java/com/recurly/v3/BaseClient.java#L147C11-L147C82 ``` if (BINARY_TYPES.contains(contentType.type() + "/" + contentType.subtype())) { ``` please replace to ``` if (contentType != null && BINARY_TYPES.contains(contentType.type() + "/" + contentType.subtype())) { ````
From reading [Recurly's docs on Webhook events](https://recurly.com/developers/reference/webhooks/#using-client-library), I noticed there are some handy webhook signature verification methods present in the Ruby and Go client libraries. It would be great to...
Using the OkHttp 4.x forces users to include Kotlin libraries in the classpath which may have an unforeseen impact on the application. Usually dependencies error. If there is nothing special...
**Describe the bug** We see occasional `NullPointerException`s propagated out of the `recurly-client-java`. The relevant observed stack trace is: ``` java.util.concurrent.ExecutionException: java.lang.NullPointerException: Cannot invoke "com.recurly.v3.Pager.getNext()" because "pager" is null at java.base/java.util.concurrent.FutureTask.report(FutureTask.java:122)...
I am looking for a way to view the respone headers, specifically the rate limiting ones. I dont see a way to do this. I could put up a PR...
Bug Report: Issue with state Filter in Recurly Java SDK **Summary** The state filter in the listAccountInvoices API of the Recurly Java SDK (com.recurly.v3:api-client:5.4.0) does not work as expected. When...
_Warning_: Github issues are not an official support channel for Recurly. If you have an urgent request we suggest you contact us through an official channel: [email protected] or https://recurly.zendesk.com **Describe...