mirror of
https://github.com/brunofontes/Memsource-API.git
synced 2024-11-23 19:00:50 +00:00
34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<?php
|
|
session_start();
|
|
if (!isset($_SESSION['token'])) {
|
|
header('Location: /oauth.php');
|
|
}
|
|
|
|
$resource = getResource($_SESSION['token']);
|
|
echo "<br>\nuserName: {$resource['user']['userName']}";
|
|
echo "<br>\nName: {$resource['user']['firstName']}";
|
|
echo "<br>\nLast name: {$resource['user']['lastName']}";
|
|
echo "<br>\nEmail: {$resource['user']['email']}";
|
|
echo "<br>\nEdition: {$resource['edition']['name']}";
|
|
echo "<br>\nOrganization: {$resource['organization']['name']}";
|
|
|
|
// we can now use the access_token as much as we want to access protected resources
|
|
function getResource($access_token)
|
|
{
|
|
$test_api_url = 'https://cloud.memsource.com/web/api2/v1/auth/whoAmI';
|
|
|
|
$header = ["Authorization: Bearer {$access_token}"];
|
|
|
|
$curl = curl_init();
|
|
curl_setopt_array($curl, [
|
|
CURLOPT_URL => $test_api_url,
|
|
CURLOPT_HTTPHEADER => $header,
|
|
CURLOPT_SSL_VERIFYPEER => false,
|
|
CURLOPT_RETURNTRANSFER => true
|
|
]);
|
|
$response = curl_exec($curl);
|
|
curl_close($curl);
|
|
|
|
return json_decode($response, true);
|
|
}
|