eelcol/laravel-tradedoubler

Laravel wrapper for the TradeDoubler API
2,397
Install
composer require eelcol/laravel-tradedoubler
Latest Version:1.0.6
PHP:^7.4|^8.0
License:MIT
Last Updated:Mar 25, 2022
Links: GitHub  ·  Packagist
Maintainer: eelcol

Installation

composer require eelcol/laravel-tradedoubler

Setup .env

Change your .env to include the following variables:

TRADEDOUBLER_CLIENT_ID=...
TRADEDOUBLER_CLIENT_SECRET=...
TRADEDOUBLER_USERNAME=...
TRADEDOUBLER_PASSWORD=... 

Read the following docs to get a clientId and clientSecret:

https://tradedoubler.docs.apiary.io/#/reference/o-auth-2-0/bearer-and-refresh-token

Publish assets

php artisan vendor:publish --tag=laravel-tradedoubler
php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="migrations"

Also run the migrations after publishing:

php artisan migrate

Fetch data

Load transactions

use Eelcol\LaravelTradedoubler\Support\Facades\Tradedoubler;

// last 7 days
Tradedoubler::getTransactions(now()->subDays(7), now());

// today only
Tradedoubler::getTransactions(now());

Make another GET call

Currently, only the call to load transactions is build-in. To make another GET call:

use Eelcol\LaravelTradedoubler\Support\Facades\Tradedoubler;

Tradedoubler::get('path', ['param1' => 123]);

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,954,390 1,705
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
laravel/laravel

The skeleton application for the Laravel framework.

64,738,171 84,935