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) SNS Create TopicCreates a new SNS topic. See SNS CreateTopic for more information.
#include <C_CkRestW.h> #include <C_CkAuthAwsW.h> #include <C_CkXmlW.h> void ChilkatSample(void) { HCkRestW rest; BOOL bTls; int port; BOOL bAutoReconnect; BOOL success; HCkAuthAwsW authAws; const wchar_t *responseXml; HCkXmlW xml; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. rest = CkRestW_Create(); // Connect to the Amazon AWS REST server. // such as https://sns.us-west-2.amazonaws.com/ bTls = TRUE; port = 443; bAutoReconnect = TRUE; success = CkRestW_Connect(rest,L"sns.us-west-2.amazonaws.com",port,bTls,bAutoReconnect); // Provide AWS credentials for the REST call. authAws = CkAuthAwsW_Create(); CkAuthAwsW_putAccessKey(authAws,L"AWS_ACCESS_KEY"); CkAuthAwsW_putSecretKey(authAws,L"AWS_SECRET_KEY"); // the region should match our URL above.. CkAuthAwsW_putRegion(authAws,L"us-west-2"); CkAuthAwsW_putServiceName(authAws,L"sns"); CkRestW_SetAuthAws(rest,authAws); CkRestW_AddQueryParam(rest,L"Action",L"CreateTopic"); CkRestW_AddQueryParam(rest,L"Name",L"chilkat"); responseXml = CkRestW_fullRequestNoBody(rest,L"GET",L"/"); if (CkRestW_getLastMethodSuccess(rest) != TRUE) { wprintf(L"%s\n",CkRestW_lastErrorText(rest)); CkRestW_Dispose(rest); CkAuthAwsW_Dispose(authAws); return; } // A successful response will have a status code equal to 200. if (CkRestW_getResponseStatusCode(rest) != 200) { wprintf(L"response status code = %d\n",CkRestW_getResponseStatusCode(rest)); wprintf(L"response status text = %s\n",CkRestW_responseStatusText(rest)); wprintf(L"response header: %s\n",CkRestW_responseHeader(rest)); wprintf(L"response body: %s\n",responseXml); CkRestW_Dispose(rest); CkAuthAwsW_Dispose(authAws); return; } // Examine the successful XML response. xml = CkXmlW_Create(); CkXmlW_LoadXml(xml,responseXml); wprintf(L"%s\n",CkXmlW_getXml(xml)); // To get the TopicArn or RequestId wprintf(L"TopicArn: %s\n",CkXmlW_chilkatPath(xml,L"CreateTopicResult|TopicArn|*")); wprintf(L"RequestId: %s\n",CkXmlW_chilkatPath(xml,L"ResponseMetadata|RequestId|*")); // A sample successful response: // <?xml version="1.0" encoding="utf-8" ?> // <CreateTopicResponse xmlns="http://sns.amazonaws.com/doc/2010-03-31/"> // <CreateTopicResult> // <TopicArn>arn:aws:sns:us-west-2:123491831234:chilkat</TopicArn> // </CreateTopicResult> // <ResponseMetadata> // <RequestId>abcd1234-d61a-5115-83bd-abcdabcd6961</RequestId> // </ResponseMetadata> // </CreateTopicResponse> CkRestW_Dispose(rest); CkAuthAwsW_Dispose(authAws); CkXmlW_Dispose(xml); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.