C# Amazon Product Advertising API

后端 未结 2 1308
死守一世寂寞
死守一世寂寞 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");
    

提交回复
热议问题