Local Edition 5.x OAuth API Compatibility with Local Edition 4.x
The OAuth feature in
TIBCO Cloud™ API Management - Local Edition 5.x has two versions of API:
V2 is backward-compatible with the
API Management - Local Edition 4.x OAuth API, whereas V3 is the recommended version of the API which is compatible with TIBCO Cloud API Management. There is no difference in supported methods and input parameters, except for a few differences in the responses mentioned below.
Sample Calls to Local Edition 5.x OAuth API
For
Local Edition 4.x response with /v2/json-rpc
For
Local Edition 5.x response with /v3/json-rpc
curl -v -d '{ "method":"oauth2.createAccessToken", "params":{ "service_key":"m9f5kyzfjjrssz6d5sfkbuw3", "client": { "client_id":"4c7fmwh59w3ufn7pxt92qwx9", "client_secret":"UhgX9W" }, "token_data": { "grant_type":"client_credentials", "scope":"scope" }, "uri": { "redirect_uri":"https://yahoo.com/cb" }, "user_context":"testuser" }, "id":1001,"jsonrpc":"2.0"}' 'https://x.x.99.100:8083/v2/json-rpc' -u root:changeme -k
curl -v -d '{ "method":"oauth2.createAccessToken", "params":{ "service_key":"m9f5kyzfjjrssz6d5sfkbuw3", "client": { "client_id":"4c7fmwh59w3ufn7pxt92qwx9", "client_secret":"UhgX9W" }, "token_data": { "grant_type":"client_credentials", "scope":"scope" }, "uri": { "redirect_uri":"https://yahoo.com/cb" }, "user_context":"testuser" }, "id":1001,"jsonrpc":"2.0"}' 'https://x.x.99.100:8083/v3/json-rpc' -u root:changeme -k
Differences between V2 and V3 Response
The V2 and V3 responses in OAuth API calls have the following differences:
- For some fields that were not returned in the response of the call to /v3/json-rpc, for example grant_type, user_context, or scope, these fields are added to the response in the /v2/json-rpc call.
- For the field refresh_token_expires in Local Edition 4.x OAuth API response, it is removed from the call for both /v2/json-rpc and /v3/json-rpc calls.
- All error format error.error.error in a call to /v3/json-rpc is converted to error.data.error in /v2/json-rpc. For example:
- If the response in /v2/json-rpc is different from the response from a Local Edition 4.x OAuth API call, it's probably due to a bug in Local Edition 4.x.
Copyright © 2022. Cloud Software Group, Inc. All Rights Reserved.