All notable changes to this project will be documented in this file.
- Added client header ```X-3scale-User-Agent: plugin-php-v{version-number} PR #17
- Allow custom host and port configurable for 3scale On premise SAAS platform PR #16 Note: For example, the signature is changed from
$url = "http://" . $this->getHost() . "/transactions/authorize.xml"
to$url = $this->getHost() . "/transactions/oauth_authorize.xml";
for endpoints
##[2.7.0] - 2017-02-16
- Added support for (Service Tokens)[https://support.3scale.net/docs/accounts/tokens]
- The signature for
authrep
method has been changed fromauthrep($appId, $appKey = null, $usage = null, $userId = null, $object = null, $no_body = null, $serviceId = null)
toauthrep($appId, $appKey = null, $credentials_or_service_id, $usage = null, $userId = null, $object = null, $no_body = null)
- The signature for 'authrep_with_user_key' method has been changed from
authrep_with_user_key($userKey, $usage = null, $userId = null, $object = null, $no_body = null, $serviceId = null)
toauthrep_with_user_key($userKey, $credentials_or_service_id, $usage = null, $userId = null, $object = null, $no_body = null)