Back to Collection Items
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
CkHttpRequest req = new CkHttpRequest();
CkJsonObject jsonParam1 = new CkJsonObject();
req.AddParam("token",jsonParam1.emit());
CkHttpResponse resp = http.PostUrlEncoded("https://login.salesforce.com{{site}}/services/oauth2/revoke",req);
if (http.get_LastMethodSuccess() == false) {
System.out.println(http.lastErrorText());
return;
}
System.out.println(resp.get_StatusCode());
System.out.println(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": [
]
}