Skip to content

Commit 6fe6219

Browse files
Merge branch 'cloudflare:production' into production
2 parents b9c0f25 + 8c7e2f0 commit 6fe6219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This approach allows you to:
7272
async fetch(request, env, ctx) {
7373
// The name of the cookie
7474
const COOKIE_NAME = "CF_Authorization";
75-
const CF_GET_IDENTITY = "https://<your-team-name>.cloudflareaccess.com>/cdn-cgi/access/get-identity";
75+
const CF_GET_IDENTITY = "https://<your-team-name>.cloudflareaccess.com/cdn-cgi/access/get-identity";
7676
const cookie = parse(request.headers.get("Cookie") || "");
7777
if (cookie[COOKIE_NAME] != null) {
7878
try {

0 commit comments

Comments
 (0)