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
* [host] make host and port configurable
* fix test case
* added scheme
* make single root endpoint for the SAAS platform endpoint and fixed test cases
* [changelog] update
* [changelog] minor edits
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+
## Unreleased
5
+
6
+
### Changed
7
+
- Allow custom host and port configurable for 3scale On premise SAAS platform [PR #16](https://github.com/3scale/3scale_ws_api_for_php/.) 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
8
+
4
9
##[2.7.0] - 2017-02-16
5
10
### Added
6
11
- Added support for (Service Tokens)[https://support.3scale.net/docs/accounts/tokens]
Copy file name to clipboardExpand all lines: lib/ThreeScaleClient.php
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -17,30 +17,30 @@
17
17
*
18
18
* Objects of this class are stateless and can be shared through multiple
19
19
* transactions and by multiple clients.
20
+
* DEFAULT_ROOT_ENDPOINT su1.3scale.net communicates with 3scale SAAS platform. When connecting to an on-premise instance of the 3scale platform, replace it with correct scheme, host and port
0 commit comments