Sample code for 30+ languages & platforms
Unicode C++

Isabel Connect Revoke Access Token

See more Ibanity Examples

Revokes an access token.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkHttpW.h>
#include <CkCertW.h>
#include <CkHttpRequestW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>
#include <CkStringBuilderW.h>

void ChilkatSample(void)
    {
    bool success = false;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttpW http;

    // // Implements the following CURL command:
    // 
    // curl -X POST https://api.ibanity.com/isabel-connect/oauth2/revoke \
    // --cert certificate.pem:qwertyuiop1 \
    // --key private_key.pem  \
    // -H "Content-Type: application/x-www-form-urlencoded" \
    // -H "Accept: application/vnd.api+json"  \
    // -d token=8787 \
    // -d client_id=valid_client_id \
    // -d client_secret=valid_client_secret 

    // Ibanity provides the certificate + private key in PFX format.  This example will use the .pfx instead of the pair of PEM files.
    // (It is also possible to implement using Chilkat with the PEM files, but PFX is easier.)
    CkCertW cert;
    success = cert.LoadPfxFile(L"qa_data/pfx/my_ibanity_certificate.pfx",L"my_pfx_password");
    if (success == false) {
        wprintf(L"%s\n",cert.lastErrorText());
        return;
    }

    success = http.SetSslClientCert(cert);
    if (success == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    CkHttpRequestW req;
    req.put_HttpVerb(L"POST");
    req.put_Path(L"/isabel-connect/oauth2/revoke");
    req.put_ContentType(L"application/x-www-form-urlencoded");

    // Load the previously obtained access token.
    CkJsonObjectW jsonToken;
    success = jsonToken.LoadFile(L"qa_data/tokens/isabel_access_token.json");
    if (success == false) {
        wprintf(L"No existing access token.\n");
        return;
    }

    req.AddParam(L"token",jsonToken.stringOf(L"access_token"));

    // Note: For sandbox testing, we literally want to use the strings
    // "valid_client_id", and "valid_client_secret".
    // For the live app, you would replace these with actual values.
    req.AddParam(L"client_id",L"valid_client_id");
    req.AddParam(L"client_secret",L"valid_client_secret");

    req.AddHeader(L"Accept",L"application/vnd.api+json");

    CkHttpResponseW resp;
    success = http.HttpReq(L"https://api.ibanity.com/isabel-connect/oauth2/revoke",req,resp);
    if (success == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    CkStringBuilderW sbResponseBody;
    resp.GetBodySb(sbResponseBody);

    int respStatusCode = resp.get_StatusCode();
    wprintf(L"Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        wprintf(L"Response Header:\n");
        wprintf(L"%s\n",resp.header());
        wprintf(L"Failed.\n");
        return;
    }

    wprintf(L"Response Body:\n");
    wprintf(L"%s\n",sbResponseBody.getAsString());

    // If successful, the response status code = 200, and the response body is "{}"
    }