library api-helpers
Helpers for Harvest, Asana and Infusionsoft APIs, standardizing some common tasks
theapiguys/api-helpers
Helpers for Harvest, Asana and Infusionsoft APIs, standardizing some common tasks
- Wednesday, July 25, 2018
- by igorsantos07
- Repository
- 0 Watchers
- 0 Stars
- 25 Installations
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 4 Versions
- 4 % Grown
, (*1)
This package is originally a split from a project that works with those three
APIs. Its main purpose is to level the different ways they work, by providing
a common way to instantiate clients and retrieve data., (*2)
While it does include classes for the three SDKs, you do not need to have all
three installed to use its benefits. That's why there's no SDK on the composer's
require
section - more on this in the install procedures below., (*3)
Installation
- Include this library in your project by requiring it:
composer require theapiguys/api-helpers *
- Depending on the SDKs you need, you should also require the following
libraries:
- Harvest:
cogitools/hapi: ^0.1.18
- Asana:
asana/asana: ^0.5.0
- Infusionsoft:
infusionsoft/php-sdk: 1.3.*
- Configure the following constants somewhere in your code, depending on the
SDKs you need:
-
BASE_URL
(mandatory): used to define the auth direct URI;
- Auth parameters:
-
HARVEST_ACCOUNT
, HARVEST_CLIENT_ID
and HARVEST_CLIENT_SECRET
-
ASANA_CLIENT_ID
and ASANA_CLIENT_SECRET
-
INFUSIONSOFT_APP_NAME
, INFUSIONSOFT_CLIENT_ID
and INFUSIONSOFT_CLIENT_SECRET
- Auth files: each of these are a path to a file that will store the auth
token for each service:
ASANA_AUTH_FILE
HARVEST_AUTH_FILE
- Prepare your web server to receive authenticated responses at
auth/(asana|harvest|infusion).php
(see #1)
- Take a look at the source code and see what each class is capable of :)