Back to Collection Items
var
http: TChilkatHttp;
success: Integer;
req: TChilkatHttpRequest;
jsonParam1: TChilkatJsonObject;
resp: IChilkatHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := TChilkatHttp.Create(Self);
req := TChilkatHttpRequest.Create(Self);
jsonParam1 := TChilkatJsonObject.Create(Self);
req.AddParam('token',jsonParam1.Emit());
resp := http.PostUrlEncoded('https://login.salesforce.com{{site}}/services/oauth2/revoke',req.ControlInterface);
if (http.LastMethodSuccess = 0) then
begin
Memo1.Lines.Add(http.LastErrorText);
Exit;
end;
Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(resp.BodyStr);
Curl Command
curl -X POST
--data-urlencode 'token={{_accessToken}}'
https://login.salesforce.com{{site}}/services/oauth2/revoke
Postman Collection Item JSON
{
"name": "Revoke Token",
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [
],
"body": {
"mode": "urlencoded",
"urlencoded": [
{
"key": "token",
"value": "{{_accessToken}}",
"description": "Replace with a valid access token or refresh token. ",
"type": "text"
}
]
},
"url": {
"raw": "{{url}}{{site}}/services/oauth2/revoke",
"host": [
"{{url}}{{site}}"
],
"path": [
"services",
"oauth2",
"revoke"
]
},
"description": "This calls the standard revoke endpoint, passing in your access token. This endpoint should be called as part of your logout process to invalidate the access and refresh token. "
},
"response": [
]
}