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
(PHP Extension) Walmart v3 Bulk Item SetupUpdates items in bulk. For more information, see https://developer.walmart.com/#/apicenter/marketPlace/latest#bulkCreateUpdateItems
<?php // The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number. // For example, if using Chilkat v9.5.0.48, then include as shown here: include("chilkat_9_5_0.php"); // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. $http = new CkHttp(); // Implements the following CURL command: // curl -X POST \ // https://marketplace.walmartapis.com/v3/feeds?feedType=item \ // -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: multipart/form-data' // -H 'Accept: application/xml' // -F feed=@qa_data/walmart/itemFeed.xml $req = new CkHttpRequest(); $req->put_HttpVerb('POST'); $req->put_Path('/v3/feeds?feedType=item'); $req->put_ContentType('multipart/form-data'); $success = $req->AddFileForUpload2('feed','qa_data/walmart/itemFeed.xml','application/xml'); $req->AddHeader('WM_QOS.CORRELATION_ID','b3261d2d-028a-4ef7-8602-633c23200af6'); $req->AddHeader('Expect','100-continue'); $req->AddHeader('Content-Type','multipart/form-data'); $req->AddHeader('WM_SEC.ACCESS_TOKEN','eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....'); $req->AddHeader('Accept','application/xml'); $req->AddHeader('WM_SVC.NAME','Walmart Marketplace'); // resp is a CkHttpResponse $resp = $http->SynchronousRequest('marketplace.walmartapis.com',443,true,$req); if ($http->get_LastMethodSuccess() == false) { print $http->lastErrorText() . "\n"; exit; } $sbResponseBody = new CkStringBuilder(); $resp->GetBodySb($sbResponseBody); $xmlResponse = new CkXml(); $xmlResponse->LoadSb($sbResponseBody,true); print $xmlResponse->getXml() . "\n"; // Sample XML response: // (Sample code for parsing the XML response is shown below) // <?xml version="1.0" encoding="UTF-8" standalone="yes"?> // <FeedAcknowledgement xmlns:ns2="http://walmart.com/"> // <feedId>E9C04D1FFD99479FBC1341D56DD5F930@AQMB_wA</feedId> // </FeedAcknowledgement> // Sample code for parsing the XML response... // Use the following online tool to generate parsing code from sample XML: // Generate Parsing Code from XML $FeedAcknowledgement_xmlns_ns2 = $xmlResponse->getAttrValue('xmlns:ns2'); $feedId = $xmlResponse->getChildContent('feedId'); ?> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.