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 ee77d3f commit dae1342Copy full SHA for dae1342
src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx
@@ -72,7 +72,7 @@ This approach allows you to:
72
async fetch(request, env, ctx) {
73
// The name of the cookie
74
const COOKIE_NAME = "CF_Authorization";
75
- const CF_GET_IDENTITY = "https://<your-team-name>.cloudflareaccess.com>/cdn-cgi/access/get-identity";
+ const CF_GET_IDENTITY = "https://<your-team-name>.cloudflareaccess.com/cdn-cgi/access/get-identity";
76
const cookie = parse(request.headers.get("Cookie") || "");
77
if (cookie[COOKIE_NAME] != null) {
78
try {
0 commit comments