public function DeprecatedTest::testAuthorizeWithRO in Auth0 Single Sign On 8.2
File
- vendor/
auth0/ auth0-php/ tests/ API/ Authentication/ DeprecatedTest.php, line 10
Class
Namespace
Auth0\Tests\API\AuthenticationCode
public function testAuthorizeWithRO() {
$this
->markTestSkipped('New applications do not provide this grant.');
$env = self::getEnv();
$api = new Authentication($env['DOMAIN'], $env['APP_CLIENT_ID']);
$response = $api
->authorize_with_ro('auth@test.com', '123456', 'openid email', 'Username-Password-Authentication');
$this
->assertArrayHasKey('id_token', $response);
$this
->assertArrayHasKey('access_token', $response);
$this
->assertArrayHasKey('token_type', $response);
$this
->assertEquals('bearer', $response['token_type']);
$userinfo = $api
->userinfo($response['access_token']);
$this
->assertArrayHasKey('email', $userinfo);
$this
->assertArrayHasKey('email_verified', $userinfo);
$this
->assertArrayHasKey('sub', $userinfo);
$this
->assertEquals('german@auth0.com', $userinfo['email']);
$this
->assertEquals('auth0|58adc60b82b0ca0774643eef', $userinfo['user_id']);
}