Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) Auto-Refresh O365 Access Token when Sending EmailSee more Office365 ExamplesDemonstrates how to automatically recover from an expired access token when sending email from smtp.office365.com using OAuth2 authentication. If the server responds with an error indicating that the access token is expired, then we refresh the access token and retry.
#include <C_CkJsonObjectW.h> #include <C_CkMailManW.h> #include <C_CkEmailW.h> #include <C_CkOAuth2W.h> #include <C_CkStringBuilderW.h> void ChilkatSample(void) { HCkJsonObjectW jsonToken; BOOL success; HCkMailManW mailman; HCkEmailW email; HCkOAuth2W oauth2; HCkStringBuilderW sbJson; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // An Office365 OAuth2 access token must first be obtained prior // to running this code. // First get our previously obtained OAuth2 access token. jsonToken = CkJsonObjectW_Create(); success = CkJsonObjectW_LoadFile(jsonToken,L"qa_data/tokens/office365.json"); mailman = CkMailManW_Create(); CkMailManW_putSmtpHost(mailman,L"smtp.office365.com"); CkMailManW_putSmtpPort(mailman,587); CkMailManW_putStartTLS(mailman,TRUE); // Use your Office365 email address for the SmtpUsername. CkMailManW_putSmtpUsername(mailman,L"OFFICE365_EMAIL_ADDRESS"); CkMailManW_putOAuth2AccessToken(mailman,CkJsonObjectW_stringOf(jsonToken,L"access_token")); // Create a new email object email = CkEmailW_Create(); CkEmailW_putSubject(email,L"This is a test"); CkEmailW_putBody(email,L"This is a test"); CkEmailW_putFrom(email,L"MY_NAME <OFFICE365_EMAIL_ADDRESS>"); success = CkEmailW_AddTo(email,L"John Doe",L"somebody@example.com"); // Call SendEmail to connect to the SMTP server and send. // The connection (i.e. session) to the SMTP server remains // open so that subsequent SendEmail calls may use the // same connection. success = CkMailManW_SendEmail(mailman,email); if (success == TRUE) { wprintf(L"Mail Sent!\n"); CkJsonObjectW_Dispose(jsonToken); CkMailManW_Dispose(mailman); CkEmailW_Dispose(email); return; } // If we fall through to here, it means something failed. // If we failed because of an invalid or expired access token, we should get this SMTP status code and error message: // response: 535 5.7.3 Authentication unsuccessful [CH2PR19CA0023.namprd19.prod.outlook.com] // status code: 535 if (CkMailManW_getLastSmtpStatus(mailman) != 535) { wprintf(L"%s\n",CkMailManW_lastErrorText(mailman)); CkJsonObjectW_Dispose(jsonToken); CkMailManW_Dispose(mailman); CkEmailW_Dispose(email); return; } // If we get here, it means the SMTP status code equaled 535, which is an authentication failure. // Let's refresh the access token, and then retry.. oauth2 = CkOAuth2W_Create(); // Update to use your token endpoint. // In the Azure Portal, in "App registrations", go to "Endpoints" (located to the right of the "+ New registration" link.) // Find your endpoint for the "OAuth 2.0 token endpoint (v2)" // See Office365 OAuth2 Endpoints CkOAuth2W_putTokenEndpoint(oauth2,L"https://login.microsoftonline.com/xxxxxxxxxx-71bf-4ebe-a866-738364321bf2/oauth2/v2.0/token"); // Replace these with actual values. CkOAuth2W_putClientId(oauth2,L"CLIENT_ID"); CkOAuth2W_putClientSecret(oauth2,L"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); CkMailManW_Dispose(mailman); CkEmailW_Dispose(email); CkOAuth2W_Dispose(oauth2); return; } wprintf(L"New access token: %s\n",CkOAuth2W_accessToken(oauth2)); wprintf(L"New refresh token: %s\n",CkOAuth2W_refreshToken(oauth2)); // Update the JSON with the new tokens. CkJsonObjectW_UpdateString(jsonToken,L"access_token",CkOAuth2W_accessToken(oauth2)); CkJsonObjectW_UpdateString(jsonToken,L"refresh_token",CkOAuth2W_refreshToken(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/office365.json",L"utf-8",FALSE); wprintf(L"OAuth2 authorization granted!\n"); wprintf(L"New Access Token = %s\n",CkOAuth2W_accessToken(oauth2)); // ------------------------------------------------- // Retry the SMTP send using the refreshed access token. wprintf(L"Retrying the send using the refreshed access token.\n"); CkMailManW_putOAuth2AccessToken(mailman,CkOAuth2W_accessToken(oauth2)); success = CkMailManW_SendEmail(mailman,email); if (success == FALSE) { wprintf(L"%s\n",CkMailManW_lastErrorText(mailman)); CkJsonObjectW_Dispose(jsonToken); CkMailManW_Dispose(mailman); CkEmailW_Dispose(email); CkOAuth2W_Dispose(oauth2); CkStringBuilderW_Dispose(sbJson); return; } success = CkMailManW_CloseSmtpConnection(mailman); if (success != TRUE) { wprintf(L"Connection to SMTP server not closed cleanly.\n"); } wprintf(L"Email sent!\n"); CkJsonObjectW_Dispose(jsonToken); CkMailManW_Dispose(mailman); CkEmailW_Dispose(email); CkOAuth2W_Dispose(oauth2); CkStringBuilderW_Dispose(sbJson); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.