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
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\APICode
public function email_code_passwordless_verify($email, $code, $scope = 'openid') {
return $this
->authorize_with_ro($email, $code, $scope, 'email');
}