C# Amazon Product Advertising API

后端 未结 2 1304
死守一世寂寞
死守一世寂寞 2021-02-02 02:24

As of August 15, Amazon made it compulsory to sign all requests made to their Product Advertising API. I thought I had got everything working just fine but when the 15th finally

相关标签:
2条回答
  • 2021-02-02 02:42

    This library automatic sign the requests (Install-Package Nager.AmazonProductAdvertising) https://www.nuget.org/packages/Nager.AmazonProductAdvertising/

    Example:

    var authentication = new AmazonAuthentication("accesskey", "secretkey");
    var client = new AmazonProductAdvertisingClient(authentication, AmazonEndpoint.US);
    var result = await client.SearchItemsAsync("canon eos");
    
    0 讨论(0)
  • 2021-02-02 02:49

    Check out http://flyingpies.wordpress.com/2009/08/01/17/. It has a walkthrough and a sample visual studio solution using C#, SOAP, WCF on .NET 3.5.

    0 讨论(0)
提交回复
热议问题