Unicode C
Unicode C
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 Unicode C Downloads
#include <C_CkXmlW.h>
#include <C_CkStringBuilderW.h>
#include <C_CkCrypt2W.h>
#include <C_CkRestW.h>
void ChilkatSample(void)
{
BOOL success;
HCkXmlW xml;
HCkStringBuilderW sbXml;
HCkCrypt2W crypt;
const wchar_t *contentMd5Value;
HCkRestW rest;
BOOL bTls;
int port;
BOOL bAutoReconnect;
const wchar_t *responseXml;
success = FALSE;
// 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
xml = CkXmlW_Create();
CkXmlW_putTag(xml,L"AmazonEnvelope");
CkXmlW_AddAttribute(xml,L"xmlns:xsi",L"http://www.w3.org/2001/XMLSchema-instance");
CkXmlW_AddAttribute(xml,L"xsi:noNamespaceSchemaLocation",L"amzn-envelope.xsd");
CkXmlW_UpdateChildContent(xml,L"Header|DocumentVersion",L"1.01");
CkXmlW_UpdateChildContent(xml,L"Header|MerchantIdentifier",L"M_EXAMPLE_123456");
CkXmlW_UpdateChildContent(xml,L"MessageType",L"Product");
CkXmlW_UpdateChildContent(xml,L"PurgeAndReplace",L"false");
CkXmlW_UpdateChildContent(xml,L"Message|MessageID",L"1");
CkXmlW_UpdateChildContent(xml,L"Message|OperationType",L"Update");
CkXmlW_UpdateChildContent(xml,L"Message|Product|SKU",L"56789");
CkXmlW_UpdateChildContent(xml,L"Message|Product|StandardProductID|Type",L"ASIN");
CkXmlW_UpdateChildContent(xml,L"Message|Product|StandardProductID|Value",L"B0EXAMPLEG");
CkXmlW_UpdateChildContent(xml,L"Message|Product|ProductTaxCode",L"A_GEN_NOTAX");
CkXmlW_UpdateChildContent(xml,L"Message|Product|DescriptionData|Title",L"Example Product Title");
CkXmlW_UpdateChildContent(xml,L"Message|Product|DescriptionData|Brand",L"Example Product Brand");
CkXmlW_UpdateChildContent(xml,L"Message|Product|DescriptionData|Description",L"This is an example product description.");
CkXmlW_UpdateChildContent(xml,L"Message|Product|DescriptionData|BulletPoint",L"Example Bullet Point 1");
CkXmlW_UpdateChildContent(xml,L"Message|Product|DescriptionData|BulletPoint[1]",L"Example Bullet Point 2");
CkXmlW_UpdateAttrAt(xml,L"Message|Product|DescriptionData|MSRP",TRUE,L"currency",L"USD");
CkXmlW_UpdateChildContent(xml,L"Message|Product|DescriptionData|MSRP",L"25.19");
CkXmlW_UpdateChildContent(xml,L"Message|Product|DescriptionData|Manufacturer",L"Example Product Manufacturer");
CkXmlW_UpdateChildContent(xml,L"Message|Product|DescriptionData|ItemType",L"example-item-type");
CkXmlW_UpdateChildContent(xml,L"Message|Product|ProductData|Health|ProductType|HealthMisc|Ingredients",L"Example Ingredients");
CkXmlW_UpdateChildContent(xml,L"Message|Product|ProductData|Health|ProductType|HealthMisc|Directions",L"Example Directions");
// Get the XML in the most compact form for the feed submission.
sbXml = CkStringBuilderW_Create();
CkXmlW_putEmitCompact(xml,TRUE);
CkXmlW_GetXmlSb(xml,sbXml);
// Get the MD5 hash..
crypt = CkCrypt2W_Create();
CkCrypt2W_putHashAlgorithm(crypt,L"md5");
contentMd5Value = CkCrypt2W_hashStringENC(crypt,CkStringBuilderW_getAsString(sbXml));
rest = CkRestW_Create();
// 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
//
bTls = TRUE;
port = 443;
bAutoReconnect = TRUE;
success = CkRestW_Connect(rest,L"mws.amazonservices.com",port,bTls,bAutoReconnect);
CkRestW_putHost(rest,L"mws.amazonservices.com");
CkRestW_AddQueryParam(rest,L"AWSAccessKeyId",L"0PB842ExampleN4ZTR2");
CkRestW_AddQueryParam(rest,L"Action",L"SubmitFeed");
CkRestW_AddQueryParam(rest,L"FeedType",L"_POST_PRODUCT_DATA_");
CkRestW_AddQueryParam(rest,L"MWSAuthToken",L"amzn.mws.4ea38b7b-f563-7709-4bae-87aeaEXAMPLE");
CkRestW_AddQueryParam(rest,L"MarketplaceId.Id.1",L"ATVExampleDER");
CkRestW_AddQueryParam(rest,L"SellerId",L"A1XExample5E6");
CkRestW_AddQueryParam(rest,L"ContentMD5Value",contentMd5Value);
CkRestW_AddQueryParam(rest,L"SignatureMethod",L"HmacSHA256");
CkRestW_AddQueryParam(rest,L"SignatureVersion",L"2");
CkRestW_AddQueryParam(rest,L"Version",L"2009-01-01");
// Add the MWS Signature param. (Also adds the Timestamp parameter using the curent system date/time.)
CkRestW_AddMwsSignature(rest,L"POST",L"/Feeds/2009-01-01",L"mws.amazonservices.com",L"MWS_SECRET_ACCESS_KEY_ID");
CkRestW_AddHeader(rest,L"Content-Type",L"text/xml");
responseXml = CkRestW_fullRequestString(rest,L"POST",L"/Feeds/2009-01-01",CkStringBuilderW_getAsString(sbXml));
if (CkRestW_getLastMethodSuccess(rest) != TRUE) {
wprintf(L"%s\n",CkRestW_lastErrorText(rest));
CkXmlW_Dispose(xml);
CkStringBuilderW_Dispose(sbXml);
CkCrypt2W_Dispose(crypt);
CkRestW_Dispose(rest);
return;
}
if (CkRestW_getResponseStatusCode(rest) != 200) {
// Examine the request/response to see what happened.
wprintf(L"response status code = %d\n",CkRestW_getResponseStatusCode(rest));
wprintf(L"response status text = %s\n",CkRestW_responseStatusText(rest));
wprintf(L"response header: %s\n",CkRestW_responseHeader(rest));
wprintf(L"response body: %s\n",responseXml);
wprintf(L"---\n");
wprintf(L"LastRequestStartLine: %s\n",CkRestW_lastRequestStartLine(rest));
wprintf(L"LastRequestHeader: %s\n",CkRestW_lastRequestHeader(rest));
}
// Examine the XML returned in the response body.
wprintf(L"%s\n",responseXml);
wprintf(L"----\n");
wprintf(L"Success.\n");
CkXmlW_Dispose(xml);
CkStringBuilderW_Dispose(sbXml);
CkCrypt2W_Dispose(crypt);
CkRestW_Dispose(rest);
}