-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
.DS_Store | ||
.idea | ||
/config.php | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
/** | ||
* Define your Datafeedr API Access ID and Secret Key below. | ||
* | ||
* You can get your Datafeedr API Keys here: | ||
* @link https://members.datafeedr.com/ | ||
*/ | ||
define( 'DATAFEEDR_ACCESS_ID', 'AVpHv2qzuVfC2Gqij762' ); | ||
define( 'DATAFEEDR_SECRET_KEY', 'oEfxiAGjrnfqi6GnrrsxEkcQ3unotyWvbTJ2dvBMUiKqNTKNaM2hfHJxX6kprCUr' ); | ||
|
||
/** | ||
* Define your Amazon Product Advertising API keys below. | ||
* | ||
* Optional - This is only required if you are using the Datafeedr API | ||
* to query the Amazon Product Advertising API. | ||
* | ||
* @link https://affiliate-program.amazon.com/gp/advertising/api/detail/main.html | ||
* @link https://affiliate-program.amazon.com/gp/advertising/api/detail/your-account.html | ||
* @link https://affiliate-program.amazon.com/home | ||
* @link http://docs.aws.amazon.com/AWSECommerceService/latest/DG/Locales.html | ||
*/ | ||
define( 'AMAZON_ACCESS_KEY', 'BK9R8KYZMDACMDJWEDBN' ); | ||
define( 'AMAZON_SECRET_KEY', '8W4LB/PvdDR3YfvdDR3YfTDy87TPezq8PezqwaeA' ); | ||
define( 'AMAZON_ASSOCIATE_TAG', 'mysite-20' ); | ||
define( 'AMAZON_LOCALE', 'US' ); |