Go to file
2019-06-22 19:05:42 -03:00
src Added: Project API class 2019-06-21 21:13:54 -03:00
.gitignore .gitignore: Avoiding commit .php_cs.cache 2019-06-20 00:58:02 -03:00
composer.json Transforming into a composer package class 2019-06-19 10:39:34 -03:00
README.md Including a README.md file 2019-06-21 21:15:48 -03:00

PHP Memsource API

I am creating this Memsource API as a way to learn how to deal with one and to use with my next projects. I will not create the fully functional API here, but feel free to send a pull request if it were interesting for you.

There are other Memsource API repositories on GibHub that appears to be fully functional if you need it.

Getting an Access Token

To be able to use the Memsource API, you need an access token, but to get it, you need to:

Register as a developer on Memsource website

So you will receive your: - client id - client secret

Get an Authorization Code

$memsource = new \BrunoFontes\Memsource();
$url = $memsource->oauth()->getAuthorizationCodeUrl($cliend_id, $callback_uri);

Redirect your browser to this returned $url so the user can login via oauth.

The $callback_uri will be called by Memsource with a $_GET['code'] that contains your Authorization Code, which you can use to...

Get an Access Token

$authCode = $_GET['code'];
$memsource = new \BrunoFontes\Memsource();
$token = $memsource->oauth()->getAccessToken($authCode, $client_id, $client_secret, $callback_uri);

Safely store this $token with the related user data and use it on any

Bilingual Files