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++) Walmart v3 Get a Feed StatusThis API returns the feed status for a specified Feed ID. For more information, see https://developer.walmart.com/#/apicenter/marketPlace/latest#getAFeedStatus
#include <CkHttpW.h> #include <CkStringBuilderW.h> #include <CkXmlW.h> void ChilkatSample(void) { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttpW http; bool success; // Implements the following CURL command: // curl -X GET \ // https://marketplace.walmartapis.com/v3/feeds/{feedId} \ // -H 'WM_SVC.NAME: Walmart Marketplace' // -H 'WM_SEC.ACCESS_TOKEN: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....' // -H 'WM_QOS.CORRELATION_ID: b3261d2d-028a-4ef7-8602-633c23200af6' // -H 'Content-Type: application/xml' // -H 'Accept: application/xml' http.SetRequestHeader(L"WM_QOS.CORRELATION_ID",L"b3261d2d-028a-4ef7-8602-633c23200af6"); http.SetRequestHeader(L"Content-Type",L"application/xml"); http.SetRequestHeader(L"WM_SEC.ACCESS_TOKEN",L"eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM....."); http.SetRequestHeader(L"Accept",L"application/xml"); http.SetRequestHeader(L"WM_SVC.NAME",L"Walmart Marketplace"); CkStringBuilderW sbResponseBody; success = http.QuickGetSb(L"https://marketplace.walmartapis.com/v3/feeds/{feedId}",sbResponseBody); if (success == false) { wprintf(L"%s\n",http.lastErrorText()); return; } CkXmlW xmlResponse; xmlResponse.LoadSb(sbResponseBody,true); // Sample XML response: // (Sample code for parsing the XML response is shown below) // <?xml version="1.0" encoding="UTF-8"?> // <PartnerFeedResponse xmlns:ns2="http://walmart.com/"> // <feedId>1c349f8f-aec0-411f-8454-ead47d12946f</feedId> // <feedStatus>PROCESSED</feedStatus> // <ingestionErrors/> // <itemsReceived>11</itemsReceived> // <itemsSucceeded>11</itemsSucceeded> // <itemsFailed>0</itemsFailed> // <itemsProcessing>0</itemsProcessing> // <offset>0</offset> // <limit>0</limit> // <itemDetails> // <itemIngestionStatus> // <martId>0</martId> // <sku>sku1</sku> // <index>8</index> // <ingestionStatus>SUCCESS</ingestionStatus> // <ingestionErrors/> // </itemIngestionStatus> // <itemIngestionStatus> // <martId>0</martId> // <sku>sku2</sku> // <index>6</index> // <ingestionStatus>SUCCESS</ingestionStatus> // <ingestionErrors/> // </itemIngestionStatus> // <itemIngestionStatus> // <martId>0</martId> // <sku>sku3</sku> // <index>9</index> // <ingestionStatus>SUCCESS</ingestionStatus> // <ingestionErrors/> // </itemIngestionStatus> // </itemDetails> // </PartnerFeedResponse> // Sample code for parsing the XML response... // Use the following online tool to generate parsing code from sample XML: // Generate Parsing Code from XML const wchar_t *PartnerFeedResponse_xmlns_ns2 = 0; const wchar_t *feedId = 0; const wchar_t *feedStatus = 0; int itemsReceived; int itemsSucceeded; int itemsFailed; int itemsProcessing; int offset; int limit; int i; int count_i; int martId; const wchar_t *sku = 0; int index; const wchar_t *ingestionStatus = 0; PartnerFeedResponse_xmlns_ns2 = xmlResponse.getAttrValue(L"xmlns:ns2"); feedId = xmlResponse.getChildContent(L"feedId"); feedStatus = xmlResponse.getChildContent(L"feedStatus"); itemsReceived = xmlResponse.GetChildIntValue(L"itemsReceived"); itemsSucceeded = xmlResponse.GetChildIntValue(L"itemsSucceeded"); itemsFailed = xmlResponse.GetChildIntValue(L"itemsFailed"); itemsProcessing = xmlResponse.GetChildIntValue(L"itemsProcessing"); offset = xmlResponse.GetChildIntValue(L"offset"); limit = xmlResponse.GetChildIntValue(L"limit"); i = 0; count_i = xmlResponse.NumChildrenHavingTag(L"itemDetails|itemIngestionStatus"); while (i < count_i) { xmlResponse.put_I(i); martId = xmlResponse.GetChildIntValue(L"itemDetails|itemIngestionStatus[i]|martId"); sku = xmlResponse.getChildContent(L"itemDetails|itemIngestionStatus[i]|sku"); index = xmlResponse.GetChildIntValue(L"itemDetails|itemIngestionStatus[i]|index"); ingestionStatus = xmlResponse.getChildContent(L"itemDetails|itemIngestionStatus[i]|ingestionStatus"); i = i + 1; } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.