goracash / apiclient
Client library for Goracash APIs
Installs: 20 602
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 1
Open Issues: 0
Requires
- php: >=5.3.0
Requires (Dev)
- php: >=5.3.0
- codeclimate/php-test-reporter: dev-master
- phpunit/phpunit: 4.3.*
This package is not auto-updated.
Last update: 2024-10-26 16:54:17 UTC
README
Description
The Goracash API Client Library enables you to work with Goracash APIs on your server.
Requirements
Installation
For the latest installation and setup instructions, see the documentation.
Basic Example
See the examples/ directory for examples of the key client features.
<?php require_once 'goracash-api-php-client/src/autoload.php'; // or wherever autoload.php is located $client = new Goracash\Client(); $client->setClientId('YOUR_CLIENT_ID'); $client->setClientSecret('YOUR_CLIENT_SECRET'); $client->setApplicationName("Client_Library_Examples"); $date_lbound = '2015-04-03 00:00:00'; $date_ubound = '2015-04-05 00:00:00'; $options = array('limit' => 2); $service = new Goracash\Service\LeadAcademic($client); $leads = $service->getLeads($date_lbound, $date_ubound, $options); foreach ($leads as $lead) { echo "Id :", $lead['id'], "<br /> \n"; echo "Date :", $lead['date'], "<br /> \n"; echo "Status :", $lead['status'], "<br /> \n"; echo "Status date:", $lead['status_date'], "<br /> \n"; echo "Level:", $lead['level'], "<br /> \n"; echo "Subject :", $lead['subject'], "<br /> \n"; echo "Payout :", $lead['payout'], "<br /> \n"; echo "Payout date :", $lead['payout_date'], "<br /> \n"; echo "Trackers :<br /> \n"; foreach ($lead['trackers'] as $tracker) { echo "Tracker id :", $tracker['id'], "<br /> \n"; echo "Tracker title :", $tracker['title'], "<br /> \n"; echo "Tracker slug :", $tracker['slug'], "<br /> \n"; } }
Frequently Asked Questions
What do I do if something isn't working?
If there is a specific bug with the library, please file a issue in the Github issues tracker, including a (minimal) example of the failing code and any specific errors retrieved. Feature requests can also be filed, as long as they are core library requests, and not-API specific: for those, refer to the documentation for the individual APIs for the best place to file requests. Please try to provide a clear statement of the problem that the feature would address.