Sample code for 30+ languages & platforms
Rust

MWS SubmitFeed (Amazon Marketplace Web Service)

See more HTTP Misc Examples

Uploads a feed for processing by Amazon MWS.

See Amazon MWS SubmitFeed for the Amazon MWS SubmitFeed reference documentation.

Important: The Chilkat v9.5.0.75 release accidentally breaks Amazon MWS (not AWS) authentication. If you need MWS with 9.5.0.75, send email to support@chilkatsoft.com for a hotfix, or revert back to v9.5.0.73, or update to a version after 9.5.0.75.

Chilkat Rust Downloads

Rust

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

// This example will send an XML file in the HTTP request body.  
// First we'll construct the XML, then we'll compute the MD5 digest which needs to be added as a query param..

// Construct the following XML.   (This is just a sample XML body..)

// <AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
//     xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
//   <Header>
//     <DocumentVersion>1.01</DocumentVersion>
//     <MerchantIdentifier>M_EXAMPLE_123456</MerchantIdentifier>
//   </Header>
//   <MessageType>Product</MessageType>
//   <PurgeAndReplace>false</PurgeAndReplace>
//   <Message>
//     <MessageID>1</MessageID>
//     <OperationType>Update</OperationType>
//     <Product>
//       <SKU>56789</SKU>
//       <StandardProductID>
//         <Type>ASIN</Type>
//         <Value>B0EXAMPLEG</Value>
//       </StandardProductID>
//       <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
//       <DescriptionData>
//         <Title>Example Product Title</Title>
//         <Brand>Example Product Brand</Brand>
//         <Description>This is an example product description.</Description>
//         <BulletPoint>Example Bullet Point 1</BulletPoint>
//         <BulletPoint>Example Bullet Point 2</BulletPoint>
//         <MSRP currency="USD">25.19</MSRP>
//         <Manufacturer>Example Product Manufacturer</Manufacturer>
//         <ItemType>example-item-type</ItemType>
//       </DescriptionData>
//       <ProductData>
//         <Health>
//           <ProductType>
//             <HealthMisc>
//               <Ingredients>Example Ingredients</Ingredients>
//               <Directions>Example Directions</Directions>
//             </HealthMisc>
//           </ProductType>
//         </Health>
//       </ProductData>
//     </Product>
//   </Message>
// </AmazonEnvelope>

// This code was generated by pasting the above XML into the online tool at http://tools.chilkat.io/xmlCreate.cshtml
let xml = chilkat::Xml::new();
xml.set_tag("AmazonEnvelope");
let _ = xml.add_attribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
let _ = xml.add_attribute("xsi:noNamespaceSchemaLocation", "amzn-envelope.xsd");
xml.update_child_content("Header|DocumentVersion", "1.01");
xml.update_child_content("Header|MerchantIdentifier", "M_EXAMPLE_123456");
xml.update_child_content("MessageType", "Product");
xml.update_child_content("PurgeAndReplace", "false");
xml.update_child_content("Message|MessageID", "1");
xml.update_child_content("Message|OperationType", "Update");
xml.update_child_content("Message|Product|SKU", "56789");
xml.update_child_content("Message|Product|StandardProductID|Type", "ASIN");
xml.update_child_content("Message|Product|StandardProductID|Value", "B0EXAMPLEG");
xml.update_child_content("Message|Product|ProductTaxCode", "A_GEN_NOTAX");
xml.update_child_content("Message|Product|DescriptionData|Title", "Example Product Title");
xml.update_child_content("Message|Product|DescriptionData|Brand", "Example Product Brand");
xml.update_child_content("Message|Product|DescriptionData|Description", "This is an example product description.");
xml.update_child_content("Message|Product|DescriptionData|BulletPoint", "Example Bullet Point 1");
xml.update_child_content("Message|Product|DescriptionData|BulletPoint[1]", "Example Bullet Point 2");
let _ = xml.update_attr_at("Message|Product|DescriptionData|MSRP", true, "currency", "USD");
xml.update_child_content("Message|Product|DescriptionData|MSRP", "25.19");
xml.update_child_content("Message|Product|DescriptionData|Manufacturer", "Example Product Manufacturer");
xml.update_child_content("Message|Product|DescriptionData|ItemType", "example-item-type");
xml.update_child_content("Message|Product|ProductData|Health|ProductType|HealthMisc|Ingredients", "Example Ingredients");
xml.update_child_content("Message|Product|ProductData|Health|ProductType|HealthMisc|Directions", "Example Directions");

// Get the XML in the most compact form for the feed submission.
let sb_xml = chilkat::StringBuilder::new();
xml.set_emit_compact(true);
let _ = xml.get_xml_sb(&sb_xml);

// Get the MD5 hash..
let crypt = chilkat::Crypt2::new();
crypt.set_hash_algorithm("md5");
let content_md5_value = crypt.hash_string_enc(&sb_xml.get_as_string().unwrap_or_default()).unwrap_or_default();

let rest = chilkat::Rest::new();

// Connect to the Amazon MWS REST server.
// 
// Make sure to connect to the correct Amazon MWS Endpoing, otherwise
// you'll get an HTTP 401 response code.
// 
// The possible servers are:
// 
// North America (NA) 	https://mws.amazonservices.com
// Europe (EU) 	https://mws-eu.amazonservices.com
// India (IN) 	https://mws.amazonservices.in
// China (CN) 	https://mws.amazonservices.com.cn
// Japan (JP) 	https://mws.amazonservices.jp 
// 
let b_tls = true;
let port = 443;
let b_auto_reconnect = true;
let _ = rest.connect("mws.amazonservices.com", port, b_tls, b_auto_reconnect).is_ok();

rest.set_host("mws.amazonservices.com");

let _ = rest.add_query_param("AWSAccessKeyId", "0PB842ExampleN4ZTR2");
let _ = rest.add_query_param("Action", "SubmitFeed");
let _ = rest.add_query_param("FeedType", "_POST_PRODUCT_DATA_");
let _ = rest.add_query_param("MWSAuthToken", "amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE");
let _ = rest.add_query_param("MarketplaceId.Id.1", "ATVExampleDER");
let _ = rest.add_query_param("SellerId", "A1XExample5E6");
let _ = rest.add_query_param("ContentMD5Value", &content_md5_value);
let _ = rest.add_query_param("SignatureMethod", "HmacSHA256");
let _ = rest.add_query_param("SignatureVersion", "2");
let _ = rest.add_query_param("Version", "2009-01-01");

// Add the MWS Signature param.  (Also adds the Timestamp parameter using the curent system date/time.)
let _ = rest.add_mws_signature("POST", "/Feeds/2009-01-01", "mws.amazonservices.com", "MWS_SECRET_ACCESS_KEY_ID");

let _ = rest.add_header("Content-Type", "text/xml");
let Ok(response_xml) = rest.full_request_string("POST", "/Feeds/2009-01-01", &sb_xml.get_as_string().unwrap_or_default()) else {
    println!("{}", rest.last_error_text());
    return;
};

if rest.response_status_code() != 200 {
    // Examine the request/response to see what happened.
    println!("response status code = {}", rest.response_status_code());
    println!("response status text = {}", rest.response_status_text());
    println!("response header: {}", rest.response_header());
    println!("response body: {}", response_xml);
    println!("---");
    println!("LastRequestStartLine: {}", rest.last_request_start_line());
    println!("LastRequestHeader: {}", rest.last_request_header());
}

// Examine the XML returned in the response body.
println!("{}", response_xml);
println!("----");
println!("Success.");