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

Unicode C 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

 

 

 

(Unicode C) Google Photos Refresh Access Token

Demonstrates how to refresh a Google Access Token. Refreshing an oauth2 access token does not need to display an interactive browser like when originally getting the OAuth2 access token for the 1st time. Your application can do it automatically without user interaction.

Chilkat C/C++ Library Downloads

MS Visual C/C++

Linux/CentOS C/C++

Alpine Linux C/C++

MAC OS X C/C++

armhf/aarch64 C/C++

C++ Builder

iOS C/C++

Android C/C++

Solaris C/C++

MinGW C/C++

#include <C_CkJsonObjectW.h>
#include <C_CkOAuth2W.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkJsonObjectW jsonToken;
    BOOL success;
    HCkOAuth2W oauth2;
    HCkStringBuilderW sbJson;

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

    // It is assumed we previously obtained an OAuth2 access token.
    // This example loads the JSON access token file 
    // saved by this example: Get Google Photos OAuth2 Access Token

    jsonToken = CkJsonObjectW_Create();
    success = CkJsonObjectW_LoadFile(jsonToken,L"qa_data/tokens/googlePhotos.json");
    if (success != TRUE) {
        wprintf(L"Failed to load googlePhotos.json\n");
        CkJsonObjectW_Dispose(jsonToken);
        return;
    }

    // The access token JSON looks like this:

    // {
    //   "access_token": "ya29.GlamBqWR6cp8lEfJMmTHVEua45912XLKoq4djyHl_Z3CEIzsPLIZkJSGie5oOrbaggy1rjJHn1zW5bjqSesGr5MEYIp9Hx-0CuvjVYf8srg2jeaDMwMACvzemp43",
    //   "expires_in": 3600,
    //   "refresh_token": "1/rl6k16nysDl9Bp1EhRH9F1WyRIoiSQAvko49Z4yY694MT5V1QXLj2ibNZGaRgek0",
    //   "scope": "https://www.googleapis.com/auth/photoslibrary",
    //   "token_type": "Bearer"
    // }

    oauth2 = CkOAuth2W_Create();

    CkOAuth2W_putTokenEndpoint(oauth2,L"https://www.googleapis.com/oauth2/v4/token");

    // Replace these with actual values.
    CkOAuth2W_putClientId(oauth2,L"GOOGLE-CLIENT-ID");
    CkOAuth2W_putClientSecret(oauth2,L"GOOGLE-CLIENT-SECRET");

    // Get the "refresh_token"
    CkOAuth2W_putRefreshToken(oauth2,CkJsonObjectW_stringOf(jsonToken,L"refresh_token"));

    // Send the HTTP POST to refresh the access token..
    success = CkOAuth2W_RefreshAccessToken(oauth2);
    if (success != TRUE) {
        wprintf(L"%s\n",CkOAuth2W_lastErrorText(oauth2));
        CkJsonObjectW_Dispose(jsonToken);
        CkOAuth2W_Dispose(oauth2);
        return;
    }

    // The response contains a new access token, but we must keep
    // our existing refresh token for when we need to refresh again in the future.
    CkJsonObjectW_UpdateString(jsonToken,L"access_token",CkOAuth2W_accessToken(oauth2));

    // Save the new JSON access token response to a file.
    sbJson = CkStringBuilderW_Create();
    CkJsonObjectW_putEmitCompact(jsonToken,FALSE);
    CkJsonObjectW_EmitSb(jsonToken,sbJson);
    CkStringBuilderW_WriteFile(sbJson,L"qa_data/tokens/googlePhotos.json",L"utf-8",FALSE);

    wprintf(L"OAuth2 authorization granted!\n");
    wprintf(L"New Access Token = %s\n",CkOAuth2W_accessToken(oauth2));


    CkJsonObjectW_Dispose(jsonToken);
    CkOAuth2W_Dispose(oauth2);
    CkStringBuilderW_Dispose(sbJson);

    }

 

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