-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating default audience config values and logic #382
Updating default audience config values and logic #382
Conversation
feature of{" "} | ||
using the default value of{" "} | ||
<code>{yourApiIdentifier}</code>. You might get this | ||
default value if you used the "Download Sample" feature of{" "} | ||
<a href="https://auth0.com/docs/quickstart/spa/react"> | ||
the quickstart guide | ||
</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here I had to use the HTML characters for {}
, as it was considering the brackets as JSX and causing the tests to fail.
@@ -14,7 +14,7 @@ const appOrigin = authConfig.appOrigin || `http://localhost:${appPort}`; | |||
if ( | |||
!authConfig.domain || | |||
!authConfig.audience || | |||
authConfig.audience === "YOUR_API_IDENTIFIER" | |||
["{yourApiIdentifier}", "{API_IDENTIFIER}"].includes(authConfig.audience) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can "{API_IDENTIFIER}" be passed as a default value? I am just wondering where this is coming from as "{yourApiIdentifier}" seems to be the default value.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just looked at some python sample apps and saw that they have "{API_IDENTIFIER}" as the default value for API_IDENTIFIER. Please disregard the above comment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Changes
"YOUR_API_IDENTIFIER"
->"{yourApiIdentifier}"
. Currently, if a user downloads the Auth0 Angular sample app without an API, the downloaded sample app has itsaudience
value in auth_config.json set to"{yourApiIdentifier}"
. This is because"YOUR_API_IDENTIFIER"
is no longer the default value, as it has been swapped with"{yourApiIdentifier}"
.Supporting References