Skip to content

Commit e1eb684

Browse files
brownoxfordbalazsorban44
authored andcommittedOct 9, 2022
fix(providers): change EVE Online to OAuth2 (#5459)
1 parent 777b7b2 commit e1eb684

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed
 

‎packages/next-auth/src/providers/eveonline.ts

+3-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,9 @@ export default function EVEOnline<P extends EVEOnlineProfile>(
1717
id: "eveonline",
1818
name: "EVE Online",
1919
type: "oauth",
20-
wellKnown:
21-
"https://login.eveonline.com/.well-known/oauth-authorization-server",
22-
authorization: {
23-
params: {
24-
scope: "publicData",
25-
},
26-
},
27-
idToken: true,
20+
authorization: "https://login.eveonline.com/v2/oauth/authorize?scope=publicData",
21+
token: "https://login.eveonline.com/v2/oauth/token",
22+
userinfo: "https://login.eveonline.com/oauth/verify",
2823
profile(profile) {
2924
return {
3025
id: String(profile.CharacterID),

0 commit comments

Comments
 (0)
Please sign in to comment.