PHP code example of alldigitalrewards / wegift

1. Go to this page and download the library: Download alldigitalrewards/wegift library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

alldigitalrewards / wegift example snippets

 php
e AllDigitalRewards\WeGift\Client;

$client = new Client('user-id', 'api-key');

foreach ($client->listAllProducts() as $product) {
    var_dump($product);
}