Download the PHP package djaxho/laravel-infusionsoft-oauth2 without Composer
On this page you can find all versions of the php package djaxho/laravel-infusionsoft-oauth2. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download djaxho/laravel-infusionsoft-oauth2
More information about djaxho/laravel-infusionsoft-oauth2
Files in djaxho/laravel-infusionsoft-oauth2
Package laravel-infusionsoft-oauth2
Short Description Laravel package to facilitate the use of the Infusionsoft API using OAUTH2
License MIT
Homepage https://github.com/djaxho/laravel-infusionsoft-oauth2
Informations about the package laravel-infusionsoft-oauth2
laravel-infusionsoft-oauth2
Laravel package to facilitate the use of the Infusionsoft API using OAUTH2. This packages is quite specific to laravel
Install
Via Composer
Installation
(These instructions are for an 'alerady set-up' laravel project with a functioning database set up) Add the service provider for laravel by adding the following line to your 'providers' array in the file congig/app.php
Publish the package files to your project by running:
Add the following variable to your .env file or u them in your pdate config/laravel-infusionsoft-oauth2.php file with values obtained from your infusionsoft developer account and for ISDK_API_REDIRECT use the uri you are serving your site from (i.e. www.yoursite.dev)
Run your database migrations (first make sure you have your database info in your .env file or config files so you can successfully connect to the database of your choosing):
You may now navigate to your.url/authorize-infusionsoft-api (whichever url you used for ISDK_API_REDIRECT) and click 'authorize.' You will then be taken to infusionsoft to authorize your api connection. At the end of this process you will be led back to the your.url/authorize-infusionsoft-api page with a success message and the oauth2 key stored in your database
Usage
To start using the infusionsoft api after going through the steps above, add this to the top of your php file:
And in the methods of your classes (or in the constructor method) you can leverage laravel's automatic dependency injection to instantiate the infusionsoft api singleton. As an example of something you could do to test your api connection in a controller class:
Then you can use the infusionsoft api documentation to make api calls. As a simple example, you would use it liek this:
Change log
Please see CHANGELOG for more information on what has changed recently.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Danny Jackson
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-infusionsoft-oauth2 with dependencies
illuminate/support Version ^5.4
infusionsoft/php-sdk Version 1.1.*