Skip to content
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

Fix links april 2024 #3049

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@
{/* If I have this paragraph be part of the other one, I think the # in the links causes the <InlineField>scope</InlineField> text to be misinterpreted */}

This request may be made with the optional <InlineField>scope</InlineField> field in order to request OAuth scopes on tokens from the eventual [`/oauth2/token` endpoint](/docs/lifecycle/authenticate-users/oauth/endpoints#complete-the-device-authorization-grant-request) return. A refresh token can be requested by including `offline_access` in the <InlineField>scope</InlineField> request parameter.
The <InlineField>scope</InlineField> value here will be used for the interactive portion of the workflow when the [user_code is passed to FusionAuth](/docs/lifecycle/authenticate-users/oauth##pass-user_code-to-fusionauth). See [Scopes](/docs/lifecycle/authenticate-users/oauth/scopes) for more information on configuring the application's OAuth scope policies, managing custom OAuth scopes, and prompting for user consent to granting scopes to third-party applications.
The <InlineField>scope</InlineField> value here will be used for the interactive portion of the workflow when the [user_code is passed to FusionAuth](/docs/lifecycle/authenticate-users/oauth#pass-user_code-to-fusionauth). See [Scopes](/docs/lifecycle/authenticate-users/oauth/scopes) for more information on configuring the application's OAuth scope policies, managing custom OAuth scopes, and prompting for user consent to granting scopes to third-party applications.

Check failure on line 436 in astro/src/content/docs/lifecycle/authenticate-users/oauth/index.mdx

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'user_code'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'user_code'?", "location": {"path": "astro/src/content/docs/lifecycle/authenticate-users/oauth/index.mdx", "range": {"start": {"line": 436, "column": 116}}}, "severity": "ERROR"}

This request will return a JSON response with values necessary to fulfill the remainder of the grant flow.

Expand Down
4 changes: 2 additions & 2 deletions astro/src/content/json/themes/templates.json
Original file line number Diff line number Diff line change
Expand Up @@ -549,12 +549,12 @@
{
"name": "requiredScopes",
"type": "List<Object>",
"description": "The list of OAuth scopes on the request that require user consent. See the [Scope API] for details on this object."
"description": "The list of OAuth scopes on the request that require user consent. See the [Scope API](/docs/apis/scopes#create-an-oauth-scope) for details on this object."
},
{
"name": "optionalScopes",
"type": "List<Object>",
"description": "The list of OAuth scopes on the request with optional user consent. See the [Scope API](/docs/apis/applications#create-an-oauth-scope) for details on this object."
"description": "The list of OAuth scopes on the request with optional user consent. See the [Scope API](/docs/apis/scopes#create-an-oauth-scope) for details on this object."
},
{
"name": "scopeConsents",
Expand Down
Loading