Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support ORCID member API for authentication #2728

Merged
merged 9 commits into from
Jul 10, 2024
Next Next commit
feat(server): Request /read-limited ORCID scope
  • Loading branch information
nellh committed Jul 8, 2024
commit b1bd09f8f14bbf774132da2ced762e723b43aa4b
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ export const setupPassportAuth = () => {
config.auth.orcid.apiURI.includes("sandbox"),
clientID: config.auth.orcid.clientID,
clientSecret: config.auth.orcid.clientSecret,
scope: '/read-limited',
callbackURL: `${config.url + config.apiPrefix}auth/orcid/callback`,
},
verifyORCIDUser,
Expand Down