Chilkat Examples

ChilkatHOMEAndroid™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi DLLGoJavaJavaScriptNode.jsObjective-CPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwiftTclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

VB.NET Examples
Web API Categories

AI
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
Box
CAdES
CSR
CSV
Cert Store
Certificates
Cloud Signature CSC
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)
JavaScript
MHT / HTML Email
MIME
Markdown
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
Regular Expressions
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
Secrets
SharePoint
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
X
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(VB.NET) curl with OAuth2 Client Credentials

See more CURL Examples
This example shows how to run a simple CURL command with an OAuth2 access token for authorization. We use CURL to retrieve a SharePoint site ID, and Chilkat automatically fetches the OAuth2 access token using the provided credentials.

Note: This example requires Chilkat v11.5.0 or greater.

Chilkat .NET Downloads

Chilkat .NET Framework

Chilkat for .NET Core

Dim success As Boolean = False

' This example will run the following curl command

' curl -X GET "https://graph.microsoft.com/v1.0/sites/{{sharepoint_hostname}}:/sites/{{site_name}}" \
'   -H "Authorization: Bearer ACCESS_TOKEN" \
'   -H "Accept: application/json"

Dim sb As New Chilkat.StringBuilder
sb.AppendLn("curl -X GET ""https://graph.microsoft.com/v1.0/sites/{{sharepoint_hostname}}:/sites/{{site_name}}"" \")
sb.AppendLn("  -H ""Authorization: Bearer ACCESS_TOKEN"" \")
sb.AppendLn("  -H ""Accept: application/json""")

' Build the JSON that provides information for getting the OAuth2 access token using the OAuth2 client credentials flow.
Dim jsonOAuth2 As New Chilkat.JsonObject

jsonOAuth2.UpdateString("oauth2.client_id","CLIENT_ID")
jsonOAuth2.UpdateString("oauth2.client_secret","CLIENT_SECRET")
jsonOAuth2.UpdateString("oauth2.scope","https://graph.microsoft.com/.default")
jsonOAuth2.UpdateString("oauth2.token_endpoint","https://login.microsoftonline.com/TENANT_ID/oauth2/v2.0/token")

Dim httpCurl As New Chilkat.HttpCurl

' Provide the information for getting the OAuth2 access token from the token endpoint
' Note: The Authorization header specified in the curl command will be ignored and replaced using the OAuth2 access token obtained at runtime from the token endpoint.
httpCurl.SetAuth(jsonOAuth2)

' The placeholders {{sharepoint_hostname}} and {{site_name}} represent variables that must be defined before execution.
' When DoYourThing runs the curl command, it automatically substitutes these placeholders with their corresponding values.
' Below are the values assigned to these variables:
httpCurl.SetVar("sharepoint_hostname","example.sharepoint.com")
httpCurl.SetVar("site_name","test")

' Run the curl command.
success = httpCurl.DoYourThing(sb.GetAsString())
If (success = False) Then
    Debug.WriteLine(httpCurl.LastErrorText)
    Exit Sub
End If


Dim responseJson As New Chilkat.JsonObject
responseJson.EmitCompact = False

httpCurl.GetResponseJson(responseJson)

Dim statusCode As Integer = httpCurl.StatusCode
Debug.WriteLine("response status code: " & statusCode)

Debug.WriteLine(responseJson.Emit())

 

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