recurly-client-php icon indicating copy to clipboard operation
recurly-client-php copied to clipboard

Recurly PHP Client

Results 29 recurly-client-php issues
Sort by recently updated
recently updated
newest added

- Base client class now accepts Http Adapter object as param. - Add http adapter interface.

Added curl as a more configurable HTTP connection library. (Includes: [saas786's](https://github.com/saas786) HttpAdapterInterface patch, plus HEAD request validity check patch. May not need the latter.) Primary improvement: if curl fails to...

When performing makeRequest, request were undergoing proper validation, and could throw errors. In pagerCount, though, _getResponse was not followed by toResource, so it was not validated, even if the HEAD...

Performs HTTP status code error guessing if "Content-Type: application/json" was received in header but had no valid error in body. This supports valid error codes in HEAD responses.

Curl would allow for much more robust error-handling, while `file_get_contents` is capable solely of throwing PHP warnings and little more. So why exactly is a hands-down worse method of handling...

question

See https://www.php.net/manual/en/function.libxml-disable-entity-loader.php

_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...

bug?

**Describe the bug** php 8.0 deprecated `libxml_disable_entity_loader` since it's no longer needed with the updated libxml version used **To Reproduce** Run version 2.x with deprecation activated (e.g. `error_reporting(-1);`) **Expected behavior**...

bug?

On my local server (wamp), my recurly requests takes more than few minutes to complete the request. Spent few days tracing the issue, but cant put my finger on what...

question