Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW queryParams;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
queryParams = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(queryParams,L"part",L"Key");
// Adds the "Authorization: Bearer <token>" header.
CkHttpW_putAuthToken(http,L"<token>");
resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://login.salesforce.com{{site}}/services/data/v{{version}}/apps/oauth/credentials/{{_appId}}/{{_consumerId}}",queryParams);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(queryParams);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(queryParams);
}
Curl Command
curl -G -d "part=Key"
-H "Authorization: Bearer <token>"
https://login.salesforce.com{{site}}/services/data/v{{version}}/apps/oauth/credentials/{{_appId}}/{{_consumerId}}
Postman Collection Item JSON
{
"name": "Resources",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer <token>",
"description": "Replace <token> with your access token"
}
],
"url": {
"raw": "{{url}}{{site}}/services/data/v{{version}}/apps/oauth/credentials/{{_appId}}/{{_consumerId}}?part=Key",
"host": [
"{{url}}{{site}}"
],
"path": [
"services",
"data",
"v{{version}}",
"apps",
"oauth",
"credentials",
"{{_appId}}",
"{{_consumerId}}"
],
"query": [
{
"key": "part",
"value": "Key",
"description": "Key, Secret, or KeyAndSecret"
}
]
},
"description": "Returns credentials for a specific consumer. Use parameters to determine whether the request should return the key, the secret, or both key and secret. See [OAuth Credentials by Consumer ID](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_credentials_by_app_and_consumer_id.htm)."
},
"response": [
]
}