h3r2on/acs

A package for inteacting with Appcelerator Cloud Services

1.0.0-beta 2014-08-06 12:53 UTC

This package is not auto-updated.

Last update: 2024-04-09 00:05:52 UTC


README

Build Status

A package to interface with Appcelerator Cloud Services

Installation

To install the following to your composer.json

"h3r2on/acs" : "dev-master"

Add the service provider and alias to app/config/app.php:

'H3r2on\Acs\AcsServiceProvider',

'Acs' => 'H3r2on\Acs\Facades\Acs',

To publish the configuration file you'll have to:

artisan config:publish h3r2on/acs

Basic Usage

In your contoller or route:

$result = Acs::get('user/search.json');

//do something with the returned object

Using Authenticated API's or as an Authentication provider for ACS Users

To use API's that require user authentication you will need to use a third party authentication provider. I've chosen Sentry, if you'd like to use this and use a different Auth manager create a issue.

TODO: Complete usage