We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c809150 commit 011190aCopy full SHA for 011190a
src/Auth0/Login/Auth0Service.php
@@ -66,6 +66,11 @@ public function __construct(
66
67
$auth0Config['cache_handler'] = $cache;
68
69
+ if(isset($auth0Config['api_identifier'])) {
70
+ // Auth0\SDK\Auth0 is using `audience` to create a login link.
71
+ $auth0Config['audience'] = $auth0Config['api_identifier'];
72
+ }
73
+
74
$this->auth0Config = $auth0Config;
75
$this->auth0 = new Auth0($auth0Config);
76
}
0 commit comments