@@ -11,187 +11,187 @@ import (
11
11
"golang.org/x/oauth2"
12
12
)
13
13
14
- // Amazon provides endpoint for using OAuth2 to access Amazon.
14
+ // Amazon is the endpoint for Amazon.
15
15
var Amazon = oauth2.Endpoint {
16
16
AuthURL : "https://www.amazon.com/ap/oa" ,
17
17
TokenURL : "https://api.amazon.com/auth/o2/token" ,
18
18
}
19
19
20
- // Bitbucket provides endpoint for using OAuth2 to access Bitbucket.
20
+ // Bitbucket is the endpoint for Bitbucket.
21
21
var Bitbucket = oauth2.Endpoint {
22
22
AuthURL : "https://bitbucket.org/site/oauth2/authorize" ,
23
23
TokenURL : "https://bitbucket.org/site/oauth2/access_token" ,
24
24
}
25
25
26
- // Cern provides endpoint for using OAuth2 to access Cern .
26
+ // Cern is the endpoint for CERN .
27
27
var Cern = oauth2.Endpoint {
28
28
AuthURL : "https://oauth.web.cern.ch/OAuth/Authorize" ,
29
29
TokenURL : "https://oauth.web.cern.ch/OAuth/Token" ,
30
30
}
31
31
32
- // Facebook provides endpoint for using OAuth2 to access Facebook.
32
+ // Facebook is the endpoint for Facebook.
33
33
var Facebook = oauth2.Endpoint {
34
34
AuthURL : "https://www.facebook.com/v3.2/dialog/oauth" ,
35
35
TokenURL : "https://graph.facebook.com/v3.2/oauth/access_token" ,
36
36
}
37
37
38
- // Foursquare provides endpoint for using OAuth2 to access Foursquare.
38
+ // Foursquare is the endpoint for Foursquare.
39
39
var Foursquare = oauth2.Endpoint {
40
40
AuthURL : "https://foursquare.com/oauth2/authorize" ,
41
41
TokenURL : "https://foursquare.com/oauth2/access_token" ,
42
42
}
43
43
44
- // Fitbit provides endpoint for using OAuth2 to access Fitbit.
44
+ // Fitbit is the endpoint for Fitbit.
45
45
var Fitbit = oauth2.Endpoint {
46
46
AuthURL : "https://www.fitbit.com/oauth2/authorize" ,
47
47
TokenURL : "https://api.fitbit.com/oauth2/token" ,
48
48
}
49
49
50
- // GitHub provides endpoint for using OAuth2 to access Github.
50
+ // GitHub is the endpoint for Github.
51
51
var GitHub = oauth2.Endpoint {
52
52
AuthURL : "https://github.com/login/oauth/authorize" ,
53
53
TokenURL : "https://github.com/login/oauth/access_token" ,
54
54
}
55
55
56
- // GitLab provides endpoint for using OAuth2 to access Gitlab .
56
+ // GitLab is the endpoint for GitLab .
57
57
var GitLab = oauth2.Endpoint {
58
58
AuthURL : "https://gitlab.com/oauth/authorize" ,
59
59
TokenURL : "https://gitlab.com/oauth/token" ,
60
60
}
61
61
62
- // Google provides endpoint for using OAuth2 to access Google.
62
+ // Google is the endpoint for Google.
63
63
var Google = oauth2.Endpoint {
64
64
AuthURL : "https://accounts.google.com/o/oauth2/auth" ,
65
65
TokenURL : "https://oauth2.googleapis.com/token" ,
66
66
}
67
67
68
- // Heroku provides endpoint for using OAuth2 to access Heroku.
68
+ // Heroku is the endpoint for Heroku.
69
69
var Heroku = oauth2.Endpoint {
70
70
AuthURL : "https://id.heroku.com/oauth/authorize" ,
71
71
TokenURL : "https://id.heroku.com/oauth/token" ,
72
72
}
73
73
74
- // HipChat provides endpoint for using OAuth2 to access HipChat.
74
+ // HipChat is the endpoint for HipChat.
75
75
var HipChat = oauth2.Endpoint {
76
76
AuthURL : "https://www.hipchat.com/users/authorize" ,
77
77
TokenURL : "https://api.hipchat.com/v2/oauth/token" ,
78
78
}
79
79
80
- // Instagram provides endpoint for using OAuth2 to access Instagram.
80
+ // Instagram is the endpoint for Instagram.
81
81
var Instagram = oauth2.Endpoint {
82
82
AuthURL : "https://api.instagram.com/oauth/authorize" ,
83
83
TokenURL : "https://api.instagram.com/oauth/access_token" ,
84
84
}
85
85
86
- // Kakao provides endpoint for using OAuth2 to access Kakao .
87
- var Kakao = oauth2.Endpoint {
86
+ // KaKao is the endpoint for KaKao .
87
+ var KaKao = oauth2.Endpoint {
88
88
AuthURL : "https://kauth.kakao.com/oauth/authorize" ,
89
89
TokenURL : "https://kauth.kakao.com/oauth/token" ,
90
90
}
91
91
92
- // Linkedin provides endpoint for using OAuth2 to access Linkedin .
93
- var Linkedin = oauth2.Endpoint {
92
+ // LinkedIn is the endpoint for LinkedIn .
93
+ var LinkedIn = oauth2.Endpoint {
94
94
AuthURL : "https://www.linkedin.com/oauth/v2/authorization" ,
95
95
TokenURL : "https://www.linkedin.com/oauth/v2/accessToken" ,
96
96
}
97
97
98
- // Mailchimp provides endpoint for using OAuth2 to access Mailchimp.
98
+ // Mailchimp is the endpoint for Mailchimp.
99
99
var Mailchimp = oauth2.Endpoint {
100
100
AuthURL : "https://login.mailchimp.com/oauth2/authorize" ,
101
101
TokenURL : "https://login.mailchimp.com/oauth2/token" ,
102
102
}
103
103
104
- // Mailru provides endpoint for using OAuth2 to access Mailru .
104
+ // Mailru is the endpoint for Mail.Ru .
105
105
var Mailru = oauth2.Endpoint {
106
106
AuthURL : "https://o2.mail.ru/login" ,
107
107
TokenURL : "https://o2.mail.ru/token" ,
108
108
}
109
109
110
- // MediaMath provides endpoint for using OAuth2 to access MediaMath.
110
+ // MediaMath is the endpoint for MediaMath.
111
111
var MediaMath = oauth2.Endpoint {
112
112
AuthURL : "https://api.mediamath.com/oauth2/v1.0/authorize" ,
113
113
TokenURL : "https://api.mediamath.com/oauth2/v1.0/token" ,
114
114
}
115
115
116
- // MediamathSandbox provides endpoint for using OAuth2 to access Mediamath Sandbox.
117
- var MediamathSandbox = oauth2.Endpoint {
116
+ // MediaMathSandbox is the endpoint for MediaMath Sandbox.
117
+ var MediaMathSandbox = oauth2.Endpoint {
118
118
AuthURL : "https://t1sandbox.mediamath.com/oauth2/v1.0/authorize" ,
119
119
TokenURL : "https://t1sandbox.mediamath.com/oauth2/v1.0/token" ,
120
120
}
121
121
122
- // Microsoft provides endpoint for using OAuth2 to access Microsoft.
122
+ // Microsoft is the endpoint for Microsoft.
123
123
var Microsoft = oauth2.Endpoint {
124
124
AuthURL : "https://login.live.com/oauth20_authorize.srf" ,
125
125
TokenURL : "https://login.live.com/oauth20_token.srf" ,
126
126
}
127
127
128
- // Nokiahealth provides endpoint for using OAuth2 to access Nokiahealth .
129
- var Nokiahealth = oauth2.Endpoint {
128
+ // NokiaHealth is the endpoint for Nokia Health .
129
+ var NokiaHealth = oauth2.Endpoint {
130
130
AuthURL : "https://account.health.nokia.com/oauth2_user/authorize2" ,
131
131
TokenURL : "https://account.health.nokia.com/oauth2/token" ,
132
132
}
133
133
134
- // Odnoklassniki provides endpoint for using OAuth2 to access Odnoklassniki.
134
+ // Odnoklassniki is the endpoint for Odnoklassniki.
135
135
var Odnoklassniki = oauth2.Endpoint {
136
136
AuthURL : "https://www.odnoklassniki.ru/oauth/authorize" ,
137
137
TokenURL : "https://api.odnoklassniki.ru/oauth/token.do" ,
138
138
}
139
139
140
- // Paypal provides endpoint for using OAuth2 to access Paypal .
141
- var Paypal = oauth2.Endpoint {
140
+ // PayPal is the endpoint for PayPal .
141
+ var PayPal = oauth2.Endpoint {
142
142
AuthURL : "https://www.paypal.com/webapps/auth/protocol/openidconnect/v1/authorize" ,
143
143
TokenURL : "https://api.paypal.com/v1/identity/openidconnect/tokenservice" ,
144
144
}
145
145
146
- // PaypalSandbox provides endpoint for using OAuth2 to access Paypal Sandbox.
147
- var PaypalSandbox = oauth2.Endpoint {
146
+ // PayPalSandbox is the endpoint for PayPal Sandbox.
147
+ var PayPalSandbox = oauth2.Endpoint {
148
148
AuthURL : "https://www.sandbox.paypal.com/webapps/auth/protocol/openidconnect/v1/authorize" ,
149
149
TokenURL : "https://api.sandbox.paypal.com/v1/identity/openidconnect/tokenservice" ,
150
150
}
151
151
152
- // Slack provides endpoint for using OAuth2 to access Slack.
152
+ // Slack is the endpoint for Slack.
153
153
var Slack = oauth2.Endpoint {
154
154
AuthURL : "https://slack.com/oauth/authorize" ,
155
155
TokenURL : "https://slack.com/api/oauth.access" ,
156
156
}
157
157
158
- // Spotify provides endpoint for using OAuth2 to access Spotify.
158
+ // Spotify is the endpoint for Spotify.
159
159
var Spotify = oauth2.Endpoint {
160
160
AuthURL : "https://accounts.spotify.com/authorize" ,
161
161
TokenURL : "https://accounts.spotify.com/api/token" ,
162
162
}
163
163
164
- // Stackoverflow provides endpoint for using OAuth2 to access Stackoverflow .
165
- var Stackoverflow = oauth2.Endpoint {
164
+ // StackOverflow is the endpoint for Stack Overflow .
165
+ var StackOverflow = oauth2.Endpoint {
166
166
AuthURL : "https://stackoverflow.com/oauth" ,
167
167
TokenURL : "https://stackoverflow.com/oauth/access_token" ,
168
168
}
169
169
170
- // Twitch provides endpoint for using OAuth2 to access Twitch.
170
+ // Twitch is the endpoint for Twitch.
171
171
var Twitch = oauth2.Endpoint {
172
172
AuthURL : "https://id.twitch.tv/oauth2/authorize" ,
173
173
TokenURL : "https://id.twitch.tv/oauth2/token" ,
174
174
}
175
175
176
- // Uber provides endpoint for using OAuth2 to access Uber.
176
+ // Uber is the endpoint for Uber.
177
177
var Uber = oauth2.Endpoint {
178
178
AuthURL : "https://login.uber.com/oauth/v2/authorize" ,
179
179
TokenURL : "https://login.uber.com/oauth/v2/token" ,
180
180
}
181
181
182
- // Vk provides endpoint for using OAuth2 to access Vk.
182
+ // Vk is the endpoint for Vk.
183
183
var Vk = oauth2.Endpoint {
184
184
AuthURL : "https://oauth.vk.com/authorize" ,
185
185
TokenURL : "https://oauth.vk.com/access_token" ,
186
186
}
187
187
188
- // Yahoo provides endpoint for using OAuth2 to access Yahoo.
188
+ // Yahoo is the endpoint for Yahoo.
189
189
var Yahoo = oauth2.Endpoint {
190
190
AuthURL : "https://api.login.yahoo.com/oauth2/request_auth" ,
191
191
TokenURL : "https://api.login.yahoo.com/oauth2/get_token" ,
192
192
}
193
193
194
- // Yandex provides endpoint for using OAuth2 to access Yandex.
194
+ // Yandex is the endpoint for Yandex.
195
195
var Yandex = oauth2.Endpoint {
196
196
AuthURL : "https://oauth.yandex.com/authorize" ,
197
197
TokenURL : "https://oauth.yandex.com/token" ,
0 commit comments