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 9bd8e10 commit 46e432bCopy full SHA for 46e432b
packages/cli/src/auth/auth.service.ts
@@ -42,6 +42,10 @@ const skipBrowserIdCheckEndpoints = [
42
43
// We need to exclude binary-data downloading endpoint because we can't send custom headers on `<embed>` tags
44
`/${restEndpoint}/binary-data`,
45
+
46
+ // oAuth callback urls aren't called by the frontend. therefore we can't send custom header on these requests
47
+ `/${restEndpoint}/oauth1-credential/callback`,
48
+ `/${restEndpoint}/oauth2-credential/callback`,
49
];
50
51
@Service()
0 commit comments