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) Amazon Cognito - Admin Update User AttributesSee more Amazon Cognito ExamplesUpdates the specified user's attributes, including developer attributes, as an administrator. Works on any user. For custom attributes, you must prepend the custom: prefix to the attribute name. In addition to updating user attributes, this API can also be used to mark phone and email as verified. For more information, see https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminUpdateUserAttributes.html
#include <C_CkRestW.h> #include <C_CkAuthAwsW.h> #include <C_CkJsonObjectW.h> #include <C_CkStringBuilderW.h> void ChilkatSample(void) { HCkRestW rest; BOOL success; HCkAuthAwsW authAws; BOOL bTls; int port; BOOL bAutoReconnect; HCkJsonObjectW json; HCkStringBuilderW sbRequestBody; HCkStringBuilderW sbResponseBody; int respStatusCode; HCkJsonObjectW jsonResponse; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. rest = CkRestW_Create(); authAws = CkAuthAwsW_Create(); CkAuthAwsW_putAccessKey(authAws,L"AWS_ACCESS_KEY"); CkAuthAwsW_putSecretKey(authAws,L"AWS_SECRET_KEY"); // Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.) CkAuthAwsW_putRegion(authAws,L"us-west-2"); CkAuthAwsW_putServiceName(authAws,L"cognito-idp"); // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date CkRestW_SetAuthAws(rest,authAws); // URL: https://cognito-idp.us-west-2.amazonaws.com/ bTls = TRUE; port = 443; bAutoReconnect = TRUE; // Use the same region as specified above. success = CkRestW_Connect(rest,L"cognito-idp.us-west-2.amazonaws.com",port,bTls,bAutoReconnect); if (success != TRUE) { wprintf(L"ConnectFailReason: %d\n",CkRestW_getConnectFailReason(rest)); wprintf(L"%s\n",CkRestW_lastErrorText(rest)); CkRestW_Dispose(rest); CkAuthAwsW_Dispose(authAws); return; } // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON // The following JSON is sent in the request body. // { // "UserAttributes": [ // { // "Name": "email_verified", // "Value": "true" // }, // { // "Name": "email", // "Value": "matt@example.com" // } // ], // "UserPoolId": "us-west-2_yt6WzO3SA", // "Username": "Matt" // } // json = CkJsonObjectW_Create(); CkJsonObjectW_UpdateString(json,L"UserAttributes[0].Name",L"email_verified"); CkJsonObjectW_UpdateString(json,L"UserAttributes[0].Value",L"true"); CkJsonObjectW_UpdateString(json,L"UserAttributes[1].Name",L"email"); CkJsonObjectW_UpdateString(json,L"UserAttributes[1].Value",L"matt@example.com"); CkJsonObjectW_UpdateString(json,L"UserPoolId",L"us-west-2_yt6WzO3SA"); CkJsonObjectW_UpdateString(json,L"Username",L"Matt"); CkRestW_AddHeader(rest,L"Content-Type",L"application/x-amz-json-1.0"); CkRestW_AddHeader(rest,L"X-Amz-Target",L"AWSCognitoIdentityProviderService.AdminUpdateUserAttributes"); CkRestW_AddHeader(rest,L"Accept-Encoding",L"identity"); sbRequestBody = CkStringBuilderW_Create(); CkJsonObjectW_EmitSb(json,sbRequestBody); sbResponseBody = CkStringBuilderW_Create(); success = CkRestW_FullRequestSb(rest,L"POST",L"/",sbRequestBody,sbResponseBody); if (success != TRUE) { wprintf(L"%s\n",CkRestW_lastErrorText(rest)); CkRestW_Dispose(rest); CkAuthAwsW_Dispose(authAws); CkJsonObjectW_Dispose(json); CkStringBuilderW_Dispose(sbRequestBody); CkStringBuilderW_Dispose(sbResponseBody); return; } respStatusCode = CkRestW_getResponseStatusCode(rest); wprintf(L"response status code = %d\n",respStatusCode); if (respStatusCode != 200) { wprintf(L"Response Status Code = %d\n",respStatusCode); wprintf(L"Response Header:\n"); wprintf(L"%s\n",CkRestW_responseHeader(rest)); wprintf(L"Response Body:\n"); wprintf(L"%s\n",CkStringBuilderW_getAsString(sbResponseBody)); CkRestW_Dispose(rest); CkAuthAwsW_Dispose(authAws); CkJsonObjectW_Dispose(json); CkStringBuilderW_Dispose(sbRequestBody); CkStringBuilderW_Dispose(sbResponseBody); return; } jsonResponse = CkJsonObjectW_Create(); CkJsonObjectW_LoadSb(jsonResponse,sbResponseBody); CkJsonObjectW_putEmitCompact(jsonResponse,FALSE); wprintf(L"%s\n",CkJsonObjectW_emit(jsonResponse)); // If successful, the response status code is 200, and the response body is empty JSON "{}" CkRestW_Dispose(rest); CkAuthAwsW_Dispose(authAws); CkJsonObjectW_Dispose(json); CkStringBuilderW_Dispose(sbRequestBody); CkStringBuilderW_Dispose(sbResponseBody); CkJsonObjectW_Dispose(jsonResponse); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.