An open API service indexing awesome lists of open source software.

https://github.com/pixelbart/devhats-amazon

Simple wordpress plugin for using amazon product advertising api. Just for fun. Recommending: https://aawp.de/
https://github.com/pixelbart/devhats-amazon

Last synced: over 1 year ago
JSON representation

Simple wordpress plugin for using amazon product advertising api. Just for fun. Recommending: https://aawp.de/

Awesome Lists containing this project

README

          

# Help

You can use two simple functions to save data from amazon into your database and retrieve it. Settings can be found under `Settings` -> `Simple Amazon`.

## Retriving data from database (array)
Can be used to retrieve informations from products you saved with `devhats_amazon_get_product();`.

```
$asin = 'Product ASIN';
devhats_amazon_get_product($asin);
```

## Saving data into your database
Can be used in a wordpress filter for saving meta box information (asin inside your posts) into database.

```
$asin = 'YOUR_ASIN';
devhats_amazon_update_product($asin);
```

## Credits

https://www.kritzelblog.de/ - for the idea
https://partnernet.amazon.de/ - for the api
https://github.com/YahnisElsts/ - for the update checker