Objective-C / Broker API / client_id
Back to Collection Items
#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
http.BasicAuth = YES;
http.Login = @"{{api_key}}";
http.Password = @"{{api_secret}}";
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "response_type": "token",
// "redirect_uri": "www.example.com/oauth_redirect",
// "scope": "general"
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"response_type" value: @"token"];
[json UpdateString: @"redirect_uri" value: @"www.example.com/oauth_redirect"];
[json UpdateString: @"scope" value: @"general"];
CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];
CkoHttpResponse *resp = [http PTextSb: @"GET" url: @"https:///v1/oauth/clients/:client_id" textData: sbRequestBody charset: @"utf-8" contentType: @"application/json" md5: NO gzip: NO];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
Curl Command
curl -X GET
-u '{{api_key}}:{{api_secret}}'
-d '{
"response_type": "token",
"redirect_uri": "www.example.com/oauth_redirect",
"scope": "general"
}'
https:///v1/oauth/clients/:client_id
Postman Collection Item JSON
{
"name": "client_id",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"method": "GET",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"response_type\": \"token\",\n \"redirect_uri\": \"www.example.com/oauth_redirect\",\n \"scope\": \"general\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "/v1/oauth/clients/:client_id",
"path": [
"v1",
"oauth",
"clients",
":client_id"
],
"variable": [
{
"key": "client_id",
"value": null
}
]
},
"description": "| Attribute | Type | Notes |\n| ----------------- | ------ | -------------------------------------- |\n| `response_type` | string | ENUM: `code` or `token` |\n| `redirect_uri` | string | Redirect URI of the OAuth flow |\n| `scope` | string | Requested scopes by the OAuth flow |"
},
"response": [
]
}