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) Shippo Create Transaction ObjectCreates a Transaction object that represents a shipping label purchase and is based on the shipping rate. For more information, see https://goshippo.com/docs/shipping-labels/
#include <C_CkHttpW.h> #include <C_CkHttpRequestW.h> #include <C_CkHttpResponseW.h> #include <C_CkStringBuilderW.h> #include <C_CkJsonObjectW.h> void ChilkatSample(void) { HCkHttpW http; BOOL success; HCkHttpRequestW req; HCkHttpResponseW resp; HCkStringBuilderW sbResponseBody; HCkJsonObjectW jResp; int respStatusCode; const wchar_t *object_state; const wchar_t *status; const wchar_t *object_created; const wchar_t *object_updated; const wchar_t *object_id; const wchar_t *object_owner; BOOL test; const wchar_t *rate; const wchar_t *tracking_number; const wchar_t *tracking_status; const wchar_t *eta; const wchar_t *tracking_url_provider; const wchar_t *label_url; const wchar_t *commercial_invoice_url; const wchar_t *order; const wchar_t *metadata; const wchar_t *parcel; int i; int count_i; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttpW_Create(); // Implements the following CURL command: // curl https://api.goshippo.com/transactions \ // -H "Authorization: ShippoToken <API_TOKEN>" \ // -d rate="478fb066930e4e3195a3686f7ea5b612" // -d label_file_type="PDF" // -d async=false req = CkHttpRequestW_Create(); CkHttpRequestW_putHttpVerb(req,L"POST"); CkHttpRequestW_putPath(req,L"/transactions"); CkHttpRequestW_putContentType(req,L"application/x-www-form-urlencoded"); CkHttpRequestW_AddParam(req,L"rate",L"478fb066930e4e3195a3686f7ea5b612"); CkHttpRequestW_AddParam(req,L"label_file_type",L"PDF"); CkHttpRequestW_AddParam(req,L"async",L"false"); CkHttpRequestW_AddHeader(req,L"Authorization",L"ShippoToken <API_TOKEN>"); resp = CkHttpW_PostUrlEncoded(http,L"https://api.goshippo.com/transactions",req); if (CkHttpW_getLastMethodSuccess(http) == FALSE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkHttpW_Dispose(http); CkHttpRequestW_Dispose(req); return; } sbResponseBody = CkStringBuilderW_Create(); CkHttpResponseW_GetBodySb(resp,sbResponseBody); jResp = CkJsonObjectW_Create(); CkJsonObjectW_LoadSb(jResp,sbResponseBody); CkJsonObjectW_putEmitCompact(jResp,FALSE); wprintf(L"Response Body:\n"); wprintf(L"%s\n",CkJsonObjectW_emit(jResp)); respStatusCode = CkHttpResponseW_getStatusCode(resp); wprintf(L"Response Status Code = %d\n",respStatusCode); if (respStatusCode >= 400) { wprintf(L"Response Header:\n"); wprintf(L"%s\n",CkHttpResponseW_header(resp)); wprintf(L"Failed.\n"); CkHttpResponseW_Dispose(resp); CkHttpW_Dispose(http); CkHttpRequestW_Dispose(req); CkStringBuilderW_Dispose(sbResponseBody); CkJsonObjectW_Dispose(jResp); return; } CkHttpResponseW_Dispose(resp); // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "object_state": "VALID", // "status": "SUCCESS", // "object_created": "2019-06-28T18:04:08.679Z", // "object_updated": "2019-06-28T18:04:10.516Z", // "object_id": "6178e155da304f10aa4b4271fdca84fb", // "object_owner": "admin@chilkatsoft.com", // "test": true, // "rate": "dd7556c284e8444294d2ab7099e662d2", // "tracking_number": "92701902416755000000000015", // "tracking_status": "UNKNOWN", // "eta": null, // "tracking_url_provider": "https://tools.usps.com/go/TrackConfirmAction_input?origTrackNum=92701902416755000000000015", // "label_url": "https://shippo-delivery-east.s3.amazonaws.com/6178e155da304f10aa4b4271fdca84fb.pdf?Signature=1LU0Qf11nQJGei%2FeLZr%2BQ5EwJS4%3D&Expires=1593281050&AWSAccessKeyId=AKIAJGLCC5MYLLWIG42A", // "commercial_invoice_url": null, // "messages": [ // ], // "order": null, // "metadata": "", // "parcel": "5af766ff15684a4186b0e3c833348fac", // "billing": { // "payments": [ // ] // } // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat. // See this example explaining how this memory should be used: const char * functions. object_state = CkJsonObjectW_stringOf(jResp,L"object_state"); status = CkJsonObjectW_stringOf(jResp,L"status"); object_created = CkJsonObjectW_stringOf(jResp,L"object_created"); object_updated = CkJsonObjectW_stringOf(jResp,L"object_updated"); object_id = CkJsonObjectW_stringOf(jResp,L"object_id"); object_owner = CkJsonObjectW_stringOf(jResp,L"object_owner"); test = CkJsonObjectW_BoolOf(jResp,L"test"); rate = CkJsonObjectW_stringOf(jResp,L"rate"); tracking_number = CkJsonObjectW_stringOf(jResp,L"tracking_number"); tracking_status = CkJsonObjectW_stringOf(jResp,L"tracking_status"); eta = CkJsonObjectW_stringOf(jResp,L"eta"); tracking_url_provider = CkJsonObjectW_stringOf(jResp,L"tracking_url_provider"); label_url = CkJsonObjectW_stringOf(jResp,L"label_url"); commercial_invoice_url = CkJsonObjectW_stringOf(jResp,L"commercial_invoice_url"); order = CkJsonObjectW_stringOf(jResp,L"order"); metadata = CkJsonObjectW_stringOf(jResp,L"metadata"); parcel = CkJsonObjectW_stringOf(jResp,L"parcel"); i = 0; count_i = CkJsonObjectW_SizeOfArray(jResp,L"messages"); while (i < count_i) { CkJsonObjectW_putI(jResp,i); i = i + 1; } i = 0; count_i = CkJsonObjectW_SizeOfArray(jResp,L"billing.payments"); while (i < count_i) { CkJsonObjectW_putI(jResp,i); i = i + 1; } CkHttpW_Dispose(http); CkHttpRequestW_Dispose(req); CkStringBuilderW_Dispose(sbResponseBody); CkJsonObjectW_Dispose(jResp); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.