Sample code for 30+ languages & platforms
Android™

Walmart v3 Bulk Item Setup

See more Walmart v3 Examples

Updates items in bulk.

Chilkat Android™ Downloads

Android™
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    boolean success = false;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp 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

    CkHttpRequest 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");

    CkHttpResponse resp = new CkHttpResponse();
    success = http.HttpSReq("marketplace.walmartapis.com",443,true,req,resp);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    CkStringBuilder sbResponseBody = new CkStringBuilder();
    resp.GetBodySb(sbResponseBody);

    CkXml xmlResponse = new CkXml();
    xmlResponse.LoadSb(sbResponseBody,true);
    Log.i(TAG, xmlResponse.getXml());

    // 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

    String FeedAcknowledgement_xmlns_ns2;
    String feedId;

    FeedAcknowledgement_xmlns_ns2 = xmlResponse.getAttrValue("xmlns:ns2");
    feedId = xmlResponse.getChildContent("feedId");

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}