Sample code for 30+ languages & platforms
C

How to Generate an Azure Service Bus Shared Access Signature (SAS)

See more Azure Service Bus Examples

Demonstrates generating and using an Azure Service Bus Shared Access Signature (SAS).

Note: This example requires Chilkat v9.5.0.65 or greater.

Chilkat C Downloads

C
#include <C_CkAuthAzureSAS.h>
#include <C_CkDateTime.h>
#include <C_CkStringBuilder.h>
#include <C_CkFileAccess.h>

void ChilkatSample(void)
    {
    HCkAuthAzureSAS authSas;
    HCkDateTime dtExpiry;
    HCkStringBuilder sbResourceUri;
    const char *sasToken;
    HCkFileAccess fac;

    //  Note: Requires Chilkat v9.5.0.65 or greater.

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

    //  -------------------------------------------------------------------
    //  Create a Shared Access Signature (SAS) token for Azure Service Bus.
    //  -------------------------------------------------------------------

    authSas = CkAuthAzureSAS_Create();
    CkAuthAzureSAS_putAccessKey(authSas,"AzureServiceBus_PrimaryKey");

    //  The SAS token for Service Bus will look like this:
    //  (The order of params will be different.  The order does not matter.)
    //  sig=<signature-string>&se=<expiry>&skn=<keyName>&sr=<URL-encoded-resourceURI>

    //  Specify the format of the string to sign.
    CkAuthAzureSAS_putStringToSign(authSas,"resourceURI,expiry");

    //  Create an expiry to 30 days in the future.
    dtExpiry = CkDateTime_Create();
    CkDateTime_SetFromCurrentSystemTime(dtExpiry);
    CkDateTime_AddDays(dtExpiry,30);
    CkAuthAzureSAS_SetTokenParam(authSas,"expiry","se",CkDateTime_getAsUnixTimeStr(dtExpiry,TRUE));

    //  Set the skn (keyname)
    //  This example uses the key "RootManageSharedAccessKey".  This give full access.
    //  In a typical scenario, you would create a new Azure key (for the service bus)
    //  in the Azure portal, such that the key has limited permissions.  This would
    //  allow you to give the SAS token to others for specific access for some period of time.
    CkAuthAzureSAS_SetTokenParam(authSas,"keyName","skn","RootManageSharedAccessKey");

    //  Set the URL-encoded-resourceURI
    sbResourceUri = CkStringBuilder_Create();
    CkStringBuilder_Append(sbResourceUri,"https://<yournamespace>.servicebus.windows.net/");
    CkStringBuilder_Encode(sbResourceUri,"url","utf-8");
    CkAuthAzureSAS_SetTokenParam(authSas,"resourceURI","sr",CkStringBuilder_getAsString(sbResourceUri));

    //  Generate the SAS token.
    sasToken = CkAuthAzureSAS_generateToken(authSas);
    if (CkAuthAzureSAS_getLastMethodSuccess(authSas) != TRUE) {
        printf("%s\n",CkAuthAzureSAS_lastErrorText(authSas));
        CkAuthAzureSAS_Dispose(authSas);
        CkDateTime_Dispose(dtExpiry);
        CkStringBuilder_Dispose(sbResourceUri);
        return;
    }

    printf("SAS token: %s\n",sasToken);

    //  Save the SAS token to a file.
    //  We can then use this pre-generated token for future Service Bus operations.
    fac = CkFileAccess_Create();
    CkFileAccess_WriteEntireTextFile(fac,"qa_data/tokens/serviceBusSas.txt",sasToken,"utf-8",FALSE);


    CkAuthAzureSAS_Dispose(authSas);
    CkDateTime_Dispose(dtExpiry);
    CkStringBuilder_Dispose(sbResourceUri);
    CkFileAccess_Dispose(fac);

    }