File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,12 @@ var Cern = oauth2.Endpoint{
35
35
TokenURL : "https://oauth.web.cern.ch/OAuth/Token" ,
36
36
}
37
37
38
+ // Deezer is the endpoint for Deezer.
39
+ var Deezer = oauth2.Endpoint {
40
+ AuthURL : "https://connect.deezer.com/oauth/auth.php" ,
41
+ TokenURL : "https://connect.deezer.com/oauth/access_token.php?output=json" ,
42
+ }
43
+
38
44
// Facebook is the endpoint for Facebook.
39
45
var Facebook = oauth2.Endpoint {
40
46
AuthURL : "https://www.facebook.com/v3.2/dialog/oauth" ,
@@ -68,8 +74,8 @@ var GitLab = oauth2.Endpoint{
68
74
69
75
// Google is the endpoint for Google.
70
76
var Google = oauth2.Endpoint {
71
- AuthURL : "https://accounts.google.com/o/oauth2/auth" ,
72
- TokenURL : "https://oauth2.googleapis.com/token" ,
77
+ AuthURL : "https://accounts.google.com/o/oauth2/auth" ,
78
+ TokenURL : "https://oauth2.googleapis.com/token" ,
73
79
DeviceAuthURL : "https://oauth2.googleapis.com/device/code" ,
74
80
}
75
81
You can’t perform that action at this time.
0 commit comments