Download the PHP package tmarois/laravel-ads-sdk without Composer
On this page you can find all versions of the php package tmarois/laravel-ads-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tmarois/laravel-ads-sdk
More information about tmarois/laravel-ads-sdk
Files in tmarois/laravel-ads-sdk
Package laravel-ads-sdk
Short Description A Laravel Ads SDK for Google Ads, Bing Ads and Facebook Ads API
License
Homepage https://github.com/tmarois/laravel-ads-sdk
Informations about the package laravel-ads-sdk
Laravel Ads SDK
Join the Discord – For support, updates and collaboration.
For Google Ads, Bing Ads and Facebook Ads API.
This is a wrapper for connecting each ad source into your Laravel application. This SDK provides a cleaner and a more consistent integration across many ad platforms than the official SDKs, and ultimately making it a lot easier to implement in your projects. You shouldn't have to learn how to communicate and understand the responses to every API.
Installation
Use Composer to install package.
Run composer require tmarois/laravel-ads-sdk
Config
1) Run php artisan vendor:publish --tag=laravel-ads-sdk
2) Copy this to your .env
and update with your credentials (if you dont have credentials, continue to the next step).
Authentication
:point_right: For GoogleAds
You will need your developer token, client id and client secret to continue. Learn More
Follow the steps in the command line to generate a refresh token.
Run php artisan laravelads:token:generate --service=GoogleAds
Having Trouble? Learn More
:point_right: For BingAds
You will need your developer token, client id and client secret to continue. Learn More
Follow the steps in the command line to generate a refresh token.
Run php artisan laravelads:token:generate --service=BingAds
Having Trouble? Learn More
:point_right: For FacebookAds
You will need your app id, app secret and access token. Learn More
NOTE: It appears for facebook, you do not need to generate refresh token, once you have your access token, the api should connect as long as you've given yourself the correct access, permissions, scopes to marketing api and ads account.
:rocket: Usage
Accessing GoogleAds
, BingAds
or FacebookAds
use the following:
Google Ads
This uses the googleads-php-lib SDK for the Google Ads API
NOTICE – You will need to Request Google Ads API Access.
Need help with authentication?
Management
- Fetching - All Campaigns
- Fetching - All Ad Groups
- Management - Campaigns
- Management - Ad Groups
- Offline Conversion Import
- Manual Configuration
- Advanced Options
Reports
- Account Performance
- Campaign Performance
- Ad Group Performance
- Final URL Performance
- Placement Domain Performance
- Placement URL Performance
- Search Term Performance
- Age Range Performance
- Gender Performance
Bing Ads
This uses the BingAds-PHP-SDK for the Bing Ads API
NOTICE – You will need to Request Bing Ads API Access.
Need help with authentication or sandbox mode?
Management
- Fetching - Get Customers
- Fetching - All Campaigns
- Fetching - All Ad Groups
- Management - Campaigns
- Management - Ad Groups
- Offline Conversion Import
- Manual Configuration
Reports
- Account Performance
- Campaign Performance
- Ad Group Performance
- Final URL Performance
- Search Term Performance
- Age Range Performance
- Gender Performance
- Custom Fields
Facebook Ads
This uses the facebook-php-business-sdk for Facebook Marketing API
Management
- Fetching - Campaigns
- Fetching - Ad Groups
Reports
- Account Performance
- Campaign Performance
- Ad Group Performance
Customization
We realize that we can't add every endpoint so in order to help improve your developer experience, we have made the Service classes Macroable. Macros are a way to add a new custom method to the classes. This way you are able to utilize the existing auth and all of the other goodies that come with this package.
Typically, you should call this method from the boot method of one of your application's service providers, such as the App\Providers\AppServiceProvider
service provider:
Then in your controller or job you would call:
Contributions
We are actively looking for new contributors.
If you want to contribute, Join the Discord channel and/or submit pull requests.
License
Laravel Ads SDK (This Package) is open-sourced software licensed under the MIT license. USE AT YOUR OWN RISK. Laravel Ads SDK is a tool to help you manage your accounts, it does not guarantee features listed here will work as described. If you do find a bug, please feel free to submit an issue. This package is not affiliated with Laravel LLC or the Laravel Framework team.
All versions of laravel-ads-sdk with dependencies
googleads/googleads-php-lib Version ^49.0
microsoft/bingads Version ^0.12
facebook/php-business-sdk Version ^13.0