Wiki https://github.com/hub/APIHubID/wiki
Swagger api.hubculture.com
Include the library with composer.
composer require hub/hubid-api-client
Refer to the https://hubculture.com/developer/home for obtaining the private and public keys.
include '/vendor/autoload.php';
use Hub\HubAPI\HubClient;
$redirectUrl = 'http://localhost/callback.php';
$config = array(
// @see https://hubculture.com/developer/home
'private_key' => '<your private key>',
'public_key' => '<your public key>',
'client_id' => 12345,
);
$hubClient = new HubClient($config);
$redirectLoginHelper = $hubClient->getRedirectLoginHelper();
$redirectLoginHelper->getAccessToken($redirectUrl);
Retrieving a user by id
include '/vendor/autoload.php';
use Hub\HubAPI\Service\UserService;
$config = array(
'private_key' => '<your private key>',
'public_key' => '<your public key>',
'token' => '<access_token you got from the auth endpoint>',
);
$service = new UserService($config);
$user = $service->getUserById(18495);
var_dump($user);
Please run the following command to run a PHP server serving examples.
HUBID_PRIVATE_KEY=[your-private-key] HUBID_PUBLIC_KEY=[your-public-key] make demo
Browse to http://localhost:8085/friend-service.php.
You may look at examples under examples
directory.