-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Credential-less use case
- Loading branch information
Showing
9 changed files
with
27 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
|
||
/** | ||
* Custom request client class. | ||
* @deprecated | ||
*/ | ||
class MyClient extends Client | ||
{ | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,25 @@ | ||
<?php | ||
/** | ||
* @author : Jakiboy | ||
* @package : Amazon Product Advertising API Library (v5) | ||
* @version : 1.3.x | ||
* @copyright : (c) 2019 - 2025 Jihad Sinnaour <[email protected]> | ||
* @link : https://jakiboy.github.io/apaapi/ | ||
* @license : MIT | ||
* | ||
* This file if a part of Apaapi Lib. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
include '../src/Autoloader.php'; | ||
\apaapi\Autoloader::init(); | ||
|
||
use Apaapi\includes\Product; | ||
|
||
// Init Product | ||
$product = new Product('_ASIN_', '_LOCALE_', '__TAG__'); | ||
$data = $product->get(); // Array | ||
var_dump($data); | ||
|
||
// Any PR is welcome! |
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