Skip to content

Commit

Permalink
Merge pull request #862 from supertokens/fix/oauth-links
Browse files Browse the repository at this point in the history
Fix oauth links
  • Loading branch information
bcbogdan authored Oct 25, 2024
2 parents 2ef7a46 + 10840e0 commit 03f8163
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion v2/emailpassword/custom-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion v2/emailpassword/pre-built-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion v2/microservice_auth/legacy/implementation-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ We can add the following claim in the JWT to "mark" the JWT as one that is meant
{..., "source": "microservice", ...}
```

In the receiving microservice (`M2`), we can then [verify the JWT](./jwt-verification/index) and check that this claim is present before serving the request.
In the receiving microservice (`M2`), we can then [verify the JWT](#verify-jwts) and check that this claim is present before serving the request.


### Code for creating a JWT
Expand Down
2 changes: 1 addition & 1 deletion v2/passwordless/custom-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion v2/passwordless/pre-built-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion v2/thirdparty/custom-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion v2/thirdparty/pre-built-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion v2/thirdpartyemailpassword/custom-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion v2/thirdpartypasswordless/custom-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down
2 changes: 1 addition & 1 deletion v2/thirdpartypasswordless/pre-built-ui/securing-routes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ In case of successful session verification, you get access to a `session` object

### Microservice authentication

For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/unified-login/machine-to-machine-authentication).
For authentication between microservices on your backend, checkout the [microservice auth guide](/docs/microservice_auth/client-credentials).

<!-- END COPY SECTION -->

Expand Down

0 comments on commit 03f8163

Please sign in to comment.