Sample code for 30+ languages & platforms
Unicode C

Azure Key Vault Get Certificates

See more Azure Key Vault Examples

Demonstrates how to list the certificates in an Azure Key Vault.

Note: This example requires Chilkat v9.5.0.96 or later.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkJsonObjectW.h>
#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkJsonObjectW json;
    HCkHttpW http;
    HCkStringBuilderW sbResponse;
    int statusCode;
    HCkJsonObjectW jsonResp;
    const wchar_t *id;
    const wchar_t *x5t;
    BOOL Enabled;
    int Nbf;
    int Exp;
    int Created;
    int Updated;
    const wchar_t *subject;
    int i;
    int count_i;

    success = FALSE;

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

    // We demonstrated how to get an access token for your Azure Key Vault
    // in this example: Azure Key Vault Get OAuth2 Access Token using Client Credentials

    // However.. starting in Chilkat v9.5.0.96, instead of directly providing Chilkat with the OAuth2 access token,
    // you can instead provide the means for Chilkat to automatically get the OAuth2 access token,
    // and in addition, Chilkat will automatically re-fetch a new OAuth2 access token as needed, such as shortly 
    // prior to or after expiration.

    // You do this by setting the AuthToken property to a JSON string that contains the required information.

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"client_id",L"APP_ID");

    // The APP_PASSWORD is the "password" returned by the Azure CLI command: az ad sp create-for-rbac --name http://example.com --role Contributor
    // See Azure Key Vault Get OAuth2 Access Token using Client Credentials
    CkJsonObjectW_UpdateString(json,L"client_secret",L"APP_PASSWORD");

    // The access token will be for Azure Key Vault operations.
    CkJsonObjectW_UpdateString(json,L"resource",L"https://vault.azure.net");

    // Specify the token endpoint which includes your tenant ID.
    CkJsonObjectW_UpdateString(json,L"token_endpoint",L"https://login.microsoftonline.com/TENANT_ID/oauth2/token");

    http = CkHttpW_Create();

    // Instead of providing an actual access token, we give Chilkat the information that allows it to 
    // automatically fetch the access token using the OAuth2 client credentials flow.
    CkHttpW_putAuthToken(http,CkJsonObjectW_emit(json));

    // Replace key_vault_name with the name of your Azure Key Vault.
    sbResponse = CkStringBuilderW_Create();
    success = CkHttpW_QuickGetSb(http,L"https://key_vault_name.vault.azure.net/certificates?api-version=7.4",sbResponse);
    if (success == FALSE) {

        statusCode = CkHttpW_getLastStatus(http);
        if (statusCode == 0) {
            // We did not get a response from the server..
            wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        }
        else {
            // We received a response, but it was an error.
            wprintf(L"Error response status code: %d\n",statusCode);
            wprintf(L"Error response:\n");
            wprintf(L"%s\n",CkStringBuilderW_getAsString(sbResponse));
        }

        CkJsonObjectW_Dispose(json);
        CkHttpW_Dispose(http);
        CkStringBuilderW_Dispose(sbResponse);
        return;
    }

    jsonResp = CkJsonObjectW_Create();
    CkJsonObjectW_LoadSb(jsonResp,sbResponse);
    CkJsonObjectW_putEmitCompact(jsonResp,FALSE);

    wprintf(L"%s\n",CkJsonObjectW_emit(jsonResp));

    // The output looks like this:

    // {
    //   "value": [
    //     {
    //       "id": "https://kvchilkat.vault.azure.net/certificates/BadSSL",
    //       "x5t": "U04xLnb8Ww7BKkW9dD7P1cCHNDY",
    //       "attributes": {
    //         "enabled": true,
    //         "nbf": 1674409014,
    //         "exp": 1737481014,
    //         "created": 1697294224,
    //         "updated": 1697294224
    //       },
    //       "subject": ""
    //     },
    //     {
    //       "id": "https://kvchilkat.vault.azure.net/certificates/Brasil",
    //       "x5t": "ayF5eBtlA35xPMivusE0wpmFjnA",
    //       "attributes": {
    //         "enabled": true,
    //         "nbf": 1667830002,
    //         "exp": 1699366002,
    //         "created": 1697294090,
    //         "updated": 1697294090
    //       },
    //       "subject": ""
    //     }
    //   ],
    //   "nextLink": null
    // }

    // Use this online tool to generate parsing code from sample JSON: 
    // Generate Parsing Code from JSON

    i = 0;
    count_i = CkJsonObjectW_SizeOfArray(jsonResp,L"value");
    while (i < count_i) {
        CkJsonObjectW_putI(jsonResp,i);
        id = CkJsonObjectW_stringOf(jsonResp,L"value[i].id");
        x5t = CkJsonObjectW_stringOf(jsonResp,L"value[i].x5t");
        Enabled = CkJsonObjectW_BoolOf(jsonResp,L"value[i].attributes.enabled");
        Nbf = CkJsonObjectW_IntOf(jsonResp,L"value[i].attributes.nbf");
        Exp = CkJsonObjectW_IntOf(jsonResp,L"value[i].attributes.exp");
        Created = CkJsonObjectW_IntOf(jsonResp,L"value[i].attributes.created");
        Updated = CkJsonObjectW_IntOf(jsonResp,L"value[i].attributes.updated");
        subject = CkJsonObjectW_stringOf(jsonResp,L"value[i].subject");
        i = i + 1;
    }



    CkJsonObjectW_Dispose(json);
    CkHttpW_Dispose(http);
    CkStringBuilderW_Dispose(sbResponse);
    CkJsonObjectW_Dispose(jsonResp);

    }