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) Google Drive Refresh Access Token

Demonstrates how to automatically refresh the access token when it expires.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

integer li_rc
integer li_Success
oleobject loo_Json
string ls_TokenFilePath
oleobject loo_Oauth2
oleobject loo_Rest
integer li_BAutoReconnect
string ls_JsonResponse
oleobject loo_Fac

li_Success = 1

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

// This example uses a previously obtained access token having permission for the 
// Google Drive scope.

// The access token (and refresh token) was previously saved to a JSON file with this format:
// See Get Google Drive OAuth2 Access Token

// {
//   "access_token": "ya29.Gls-BsdxTWuenChv ... yzVIrXikkLxu5T6dy4I6GjADFardoz4Lruw",
//   "expires_in": 3600,
//   "refresh_token": "1/tMBJ ... 27D-Hk6rpQYBA",
//   "scope": "https://www.googleapis.com/auth/drive",
//   "token_type": "Bearer"
// }

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject")
if li_rc < 0 then
    destroy loo_Json
    MessageBox("Error","Connecting to COM object failed")
    return
end if
ls_TokenFilePath = "qa_data/tokens/googleDrive.json"
loo_Json.LoadFile(ls_TokenFilePath)

loo_Oauth2 = create oleobject
li_rc = loo_Oauth2.ConnectToNewObject("Chilkat_9_5_0.OAuth2")

loo_Oauth2.AccessToken = loo_Json.StringOf("access_token")
loo_Oauth2.RefreshToken = loo_Json.StringOf("refresh_token")

loo_Rest = create oleobject
li_rc = loo_Rest.ConnectToNewObject("Chilkat_9_5_0.Rest")

// Connect using TLS.
li_BAutoReconnect = 1
li_Success = loo_Rest.Connect("www.googleapis.com",443,1,li_BAutoReconnect)

// Provide the authentication credentials (i.e. the access token)
loo_Rest.SetAuthOAuth2(loo_Oauth2)

// We'll test with a simple request to empty trash.
// If our access token expired, we'll get a 401 response..
ls_JsonResponse = loo_Rest.FullRequestNoBody("DELETE","/drive/v3/files/trash")
if loo_Rest.LastMethodSuccess <> 1 then
    Write-Debug loo_Rest.LastErrorText
    destroy loo_Json
    destroy loo_Oauth2
    destroy loo_Rest
    return
end if

// If the access token expired, we'll get a 401 response status with this response body:
// {
//  "error": {
//   "errors": [
//    {
//     "domain": "global",
//     "reason": "authError",
//     "message": "Invalid Credentials",
//     "locationType": "header",
//     "location": "Authorization"
//    }
//   ],
//   "code": 401,
//   "message": "Invalid Credentials"
//  }
// }
if loo_Rest.ResponseStatusCode = 401 then

    Write-Debug "Refreshing access token..."

    loo_Oauth2.AuthorizationEndpoint = "https://accounts.google.com/o/oauth2/v2/auth"
    loo_Oauth2.TokenEndpoint = "https://www.googleapis.com/oauth2/v4/token"

    //  Replace these with actual values.
    loo_Oauth2.ClientId = "GOOGLE-CLIENT-ID"
    loo_Oauth2.ClientSecret = "GOOGLE-CLIENT-SECRET"
    loo_Oauth2.Scope = "https://www.googleapis.com/auth/drive"

    // Use OAuth2 to refresh the access token.
    li_Success = loo_Oauth2.RefreshAccessToken()
    if li_Success <> 1 then
        Write-Debug loo_Oauth2.LastErrorText
        destroy loo_Json
        destroy loo_Oauth2
        destroy loo_Rest
        return
    end if

    // Save the new access token to our XML file (so we can refresh it again when needed).
    loo_Json.UpdateString("access_token",loo_Oauth2.AccessToken)

    loo_Fac = create oleobject
    li_rc = loo_Fac.ConnectToNewObject("Chilkat_9_5_0.FileAccess")

    loo_Fac.WriteEntireTextFile(ls_TokenFilePath,loo_Json.Emit(),"utf-8",0)

    Write-Debug "Access Token Refreshed!"

    // Retry the request with the new access token..
    ls_JsonResponse = loo_Rest.FullRequestNoBody("DELETE","/drive/v3/files/trash")
    if loo_Rest.LastMethodSuccess <> 1 then
        Write-Debug loo_Rest.LastErrorText
        destroy loo_Json
        destroy loo_Oauth2
        destroy loo_Rest
        destroy loo_Fac
        return
    end if

end if

// A successful response will have a status code equal to 204 and the response body is empty.
// (If not successful, then there should be a JSON response body with information..)
if loo_Rest.ResponseStatusCode <> 204 then
    Write-Debug "response status code = " + string(loo_Rest.ResponseStatusCode)
    Write-Debug "response status text = " + loo_Rest.ResponseStatusText
    Write-Debug "response header: " + loo_Rest.ResponseHeader
    Write-Debug "response JSON: " + ls_JsonResponse
    destroy loo_Json
    destroy loo_Oauth2
    destroy loo_Rest
    destroy loo_Fac
    return
end if

Write-Debug "Trash Emptied!"


destroy loo_Json
destroy loo_Oauth2
destroy loo_Rest
destroy loo_Fac

 

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