Skip to main content

The Amazon Product Advertising API

Source: https://images-na.ssl-images-amazon.com/images/G/01/associates/network/landing/mont_gift_fpo.jpg

What is the Amazon Product Advertising API?

For developers:

How to get access to PA API?

From Amazon Associates Central website: https://affiliate-program.amazon.com/assoc_credentials/home:

How do I get access to PA API?
In order to qualify for requesting access to PA API, 
you will need an associate account, 
you will have to complete 3 qualifying sales in the first 180 days and 
you will have to comply with the Operating Agreement. 
Once your account is approved as an associate account, 
you will see a 'Request for PA API access' button below. 
You can click the button to get access to PA API.

Related resources

Seller University

Popular posts from this blog

Powershell: Install IIS

Run Powershell as Administrator, then run the command below to install IIS. Install-WindowsFeature Web-WebServer Check after installing Get-WindowsFeature *Web*

[PowerShell]: Powershell script uploading backup databases to ftp server

Author:  Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c Nhu cầu - Học sử dụng Powershell và áp dụng vào thực tế - Server chạy MS SQL được backup mỗi ngày và lưu các file backup ở folder mặc định "C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup" - Upload các file database backup về một ftp server khác để lưu "offsite" # Begin script # Thanks to: Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c # Khai báo folder chứa các file backup database, dưới đây là folder backup mặc định của MS SQL 2012 $Dir="C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup"   # ftp server $ftp = "ftp://IPAddres/subfolder/subsubfolder" $user = "usernamehere" $pass = "passwordhere" # DO NOT use $(Get-Date), use $d variable instead, otherwise SQL Agent gets error "The...