- Login to the application and navigate to
/connector/client - Create new client and generate
Client IDandClient secret - Once you have created the client, you may request an access token by issuing a POST request to the /oauth/token route
$http = new GuzzleHttp\Client;
$response = $http->post('http://your-app.com/oauth/token',
[
'form_params' => [
'grant_type' => 'password',
'client_id' => 'client-id',
'client_secret' => 'client-secret',
'username' => '[email protected]',
'password' => 'my-password',
'scope' => '',
], ]);
Authentication
Powered by BetterDocs
