|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Unicode C) Dynamics CRM Oauth2 Client CredentialsGet an OAuth2 access token for Dynamics CRM using client credentials. Note: This example requires Chilkat v11.0.0 or greater. 
 #include <C_CkHttpW.h> #include <C_CkHttpRequestW.h> #include <C_CkHttpResponseW.h> #include <C_CkJsonObjectW.h> void ChilkatSample(void) { BOOL success; HCkHttpW http; HCkHttpRequestW req; const wchar_t *url; HCkHttpResponseW resp; int statusCode; HCkJsonObjectW json; success = FALSE; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttpW_Create(); // Pass the client ID/secret using Basic HTTP authentication. CkHttpW_putLogin(http,L"CLIENT_ID"); CkHttpW_putPassword(http,L"CLIENT_SECRET"); CkHttpW_putBasicAuth(http,TRUE); req = CkHttpRequestW_Create(); CkHttpRequestW_AddParam(req,L"client_secret",L"CLIENT_SECRET"); CkHttpRequestW_AddParam(req,L"client_id",L"CLIENT_ID"); CkHttpRequestW_AddParam(req,L"scope",L"https://yourdynamicsdomain.crm3.dynamics.com/.default"); CkHttpRequestW_AddParam(req,L"grant_type",L"client_credentials"); // Use your own tenant ID, for example 4d8fdd66-66d1-43b0-ae5c-e31b4b7de5cd url = L"https://login.microsoftonline.com/TENANT_ID/oauth2/v2.0/token"; CkHttpRequestW_putHttpVerb(req,L"POST"); CkHttpRequestW_putContentType(req,L"application/x-www-form-urlencoded"); resp = CkHttpResponseW_Create(); success = CkHttpW_HttpReq(http,url,req,resp); if (success == FALSE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkHttpW_Dispose(http); CkHttpRequestW_Dispose(req); CkHttpResponseW_Dispose(resp); return; } statusCode = CkHttpResponseW_getStatusCode(resp); wprintf(L"Response status code = %d\n",statusCode); json = CkJsonObjectW_Create(); CkJsonObjectW_Load(json,CkHttpResponseW_bodyStr(resp)); CkJsonObjectW_putEmitCompact(json,FALSE); wprintf(L"%s\n",CkJsonObjectW_emit(json)); if (statusCode == 200) { CkJsonObjectW_WriteFile(json,L"qa_data/tokens/dynamicsCrmClientCredentialsToken.json"); wprintf(L"Success.\n"); } else { wprintf(L"Failed.\n"); } CkHttpW_Dispose(http); CkHttpRequestW_Dispose(req); CkHttpResponseW_Dispose(resp); CkJsonObjectW_Dispose(json); } | ||||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.