You are here

public function Authentication::email_code_passwordless_verify in Auth0 Single Sign On 8.2

Verify email code

@codeCoverageIgnore - Deprecated

Parameters

string $email:

string $code:

string $scope:

Return value

mixed

Throws

ApiException

Deprecated

5.4.0, legacy authentication pipeline, no alternative provided.

File

vendor/auth0/auth0-php/src/API/Authentication.php, line 682

Class

Authentication
Class Authentication

Namespace

Auth0\SDK\API

Code

public function email_code_passwordless_verify($email, $code, $scope = 'openid') {
  return $this
    ->authorize_with_ro($email, $code, $scope, 'email');
}