Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PowerBuilder Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(PowerBuilder) Azure Key Vault Get OAuth2 Access Token using Client Credentials

See more Azure Key Vault Examples

Demonstrates how to get an OAuth2 access token using client credentials for an Azure Key Vault resource.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

integer li_rc
oleobject loo_Http
oleobject loo_Req
oleobject loo_Resp
string ls_StrRespBody
integer li_RespStatusCode
oleobject loo_JsonResp

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

// You can use OAuth2 client credentials with an Azure App (service principal) that has
// the required Role-Based Access Control (RBAC) permissions.
// In this case, it would be service principal with RBAC permissions to administer and manage
// the key vault.

// You can create the Azure App (also known as the Service Principal)
// in the Azure CLI (command line interface) as follows:

// ----------------------------------------------------------------------
// az ad sp create-for-rbac --name http://example.com --role Contributor
// ----------------------------------------------------------------------

// The argument to --name must be a valid URI that is a verified domain of your 
// organization or its subdomain.

// The output of the above "az ad sp create-for-rbac ..." command is JSON such as this:

// {
//   "appId": "25ac6e3a-9ac7-42b9-b13e-18644c1de959",
//   "displayName": "azure-cli-2023-10-14-22-38-15",
//   "name": "http://example.com",
//   "password": "f1f2f3f0-52dc-4236-8295-c8a1d6aa393c",
//   "tenant": "4d8dfd66-68d1-13b0-af5c-b31b4b3d53d"
// }

// Save the values in the above JSON.  You'll need it below..

// You'll also want to add the role of "Key Vault Administrator" to the Service Principal
// for the particular key vault.

// ----------------------------------------------------------------------
// az role assignment create --assignee <Application-ID> --role "Key Vault Administrator" 
//       --scope /subscriptions/<Subscription-ID>/resourceGroups/<Resource-Group-Name>/providers/Microsoft.KeyVault/vaults/<KeyVault-Name>
// ----------------------------------------------------------------------

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if
loo_Req = create oleobject
li_rc = loo_Req.ConnectToNewObject("Chilkat_9_5_0.HttpRequest")

// Add query params to the request.
loo_Req.AddParam("grant_type","client_credentials")

// Use the service principal's appId
loo_Req.AddParam("client_id","25ac6e3a-9ac7-42b9-b13e-18644c1de959")

// Use the service principal's password.
loo_Req.AddParam("client_secret","f1f2f3f0-52dc-4236-8295-c8a1d6aa393c")

// Note: The resource must match the API for which you're using the access token..
loo_Req.AddParam("resource","https://vault.azure.net")

loo_Http.SetUrlVar("tenant","4d8dfd66-68d1-13b0-af5c-b31b4b3d53d")
loo_Resp = loo_Http.PostUrlEncoded("https://login.microsoftonline.com/{$tenant}/oauth2/token",loo_Req)
if loo_Http.LastMethodSuccess <> 1 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Req
    return
end if

ls_StrRespBody = loo_Resp.BodyStr
li_RespStatusCode = loo_Resp.StatusCode
if li_RespStatusCode >= 400 then
    Write-Debug "Response Status Code = " + string(li_RespStatusCode)
    Write-Debug "Response Body:"
    Write-Debug ls_StrRespBody
    destroy loo_Resp
    destroy loo_Http
    destroy loo_Req
    return
end if

loo_JsonResp = create oleobject
li_rc = loo_JsonResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JsonResp.Load(ls_StrRespBody)
loo_JsonResp.EmitCompact = 0
Write-Debug loo_JsonResp.Emit()

// The result is an access token such as the following:

// {
//   "token_type": "Bearer",
//   "expires_in": "3600",
//   "ext_expires_in": "3600",
//   "expires_on": "1557864616",
//   "not_before": "1557860716",
//   "resource": "https://vault.azure.net",
//   "access_token": "eyJ0eXAiOiJKV1QiL ... 20UFDDOHEyUg"
// }

// If you wish, you can save the token to a file.
// The access token is generally valid for 1 hour.
// After 1 hour, you would need to get a new access token in the same way.
loo_JsonResp.WriteFile("qa_data/tokens/azureKeyVaultToken.json")

destroy loo_Resp


destroy loo_Http
destroy loo_Req
destroy loo_JsonResp

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.