Skip to content

Commit 288ccbd

Browse files
committed
Hide hybrid flow docs, remove links
1 parent 516aac1 commit 288ccbd

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

articles/api-auth/grant/hybrid.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
description: Describes how to call APIs from applications using the Hybrid Flow
3+
public: false
34
topics:
45
- authorization-code
56
- api-authorization

articles/api-auth/tutorials/hybrid-flow.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
description: Learn how to execute the Hybrid Flow so your app can use an ID token to access information about the user while obtaining an authorization code that can be exchanged for an Access Token.
33
toc: true
4+
public: false
45
topics:
56
- api-authentication
67
- oidc

articles/architecture-scenarios/spa-api/part-3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The contents of the authResult object returned by parseHash depend upon which au
126126
- __accessToken__: An Access Token for the API, specified by the __audience__.
127127
- __expiresIn__: A string containing the expiration time (in seconds) of the Access Token.
128128

129-
Determine where best to [store the tokens](/tokens/concepts/token-storage). If your single-page app has a backend server at all, then tokens should be handled server-side using the [Authorization Code Flow](/flows/concepts/auth-code), [Authorization Code Flow with Proof Key for Code Exchange (PKCE)](/flows/concepts/auth-code-pkce), or [Hybrid Flow](/api-auth/grant/hybrid).
129+
Determine where best to [store the tokens](/tokens/concepts/token-storage). If your single-page app has a backend server at all, then tokens should be handled server-side using the [Authorization Code Flow](/flows/concepts/auth-code) or [Authorization Code Flow with Proof Key for Code Exchange (PKCE)](/flows/concepts/auth-code-pkce).
130130

131131
If you have a single-page app (SPA) with no corresponding backend server, your SPA should request new tokens on login and store them in memory without any persistence. To make API calls, your SPA would then use the in-memory copy of the token.
132132

articles/tokens/concepts/token-storage.md

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ When the SPA calls multiple APIs that reside in a different domain, access and o
6464
- If the SPA backend can handle the API calls, handle tokens server-side using:
6565
- [Authorization Code Flow](/flows/concepts/auth-code)
6666
- [Authorization Code Flow with Proof Key for Code Exchange (PKCE)](/flows/concepts/auth-code-pkce)
67-
- [Hybrid Flow](/api-auth/grant/hybrid)
6867

6968
- If the SPA backend cannot handle the API calls, the tokens should be stored in the SPA backend but the SPA needs to fetch the tokens from the backend to perform requests to the API. A protocol needs to be established between the backend and the SPA to allow the secure transfer of the token from the backend to the SPA.
7069

articles/troubleshoot/guides/check-api-calls.md

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ useCase: troubleshooting
3838
* [Call APIs Using the Authorization Code Flow](/flows/guides/auth-code/call-api-auth-code)
3939
* [Call APIs Using Authorization Code Flow with PKCE](/flows/guides/auth-code-pkce/call-api-auth-code-pkce)
4040
* [Call APIs Using Device Authorization Flow](/flows/guides/device-auth/call-api-device-auth)
41-
* [Call APIs Using Hybrid Flow](/api-auth/grant/hybrid)
4241
* [Call Identity Provider APIs](/connections/calling-an-external-idp-api)
4342
* [Call APIs with Auth0 Tokens](/api-auth/tutorials/adoption/api-tokens)
4443
* [Call APIs from Highly Trusted Applications](/api-auth/grant/password)

0 commit comments

Comments
 (0)