diff --git a/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx b/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx index b0456fcefd2bfe5..84ef76aa55937ab 100644 --- a/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx +++ b/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx @@ -72,7 +72,7 @@ This approach allows you to: async fetch(request, env, ctx) { // The name of the cookie const COOKIE_NAME = "CF_Authorization"; - const CF_GET_IDENTITY = "https://.cloudflareaccess.com>/cdn-cgi/access/get-identity"; + const CF_GET_IDENTITY = "https://.cloudflareaccess.com/cdn-cgi/access/get-identity"; const cookie = parse(request.headers.get("Cookie") || ""); if (cookie[COOKIE_NAME] != null) { try {