grannt 5.4.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +364 -0
- package/LICENSE +21 -0
- package/README.md +1222 -0
- package/config/oauth.json +1195 -0
- package/config/profile.json +644 -0
- package/config/reserved.json +40 -0
- package/grant.d.ts +442 -0
- package/grant.js +139 -0
- package/hivtzl8u.cjs +1 -0
- package/lib/client.js +62 -0
- package/lib/config.js +220 -0
- package/lib/flow/oauth1.js +145 -0
- package/lib/flow/oauth2.js +220 -0
- package/lib/grant.js +31 -0
- package/lib/handler/aws.js +89 -0
- package/lib/handler/azure.js +53 -0
- package/lib/handler/curveball.js +46 -0
- package/lib/handler/express-4.js +53 -0
- package/lib/handler/fastify.js +50 -0
- package/lib/handler/gcloud.js +56 -0
- package/lib/handler/hapi-16.js +60 -0
- package/lib/handler/hapi-17.js +47 -0
- package/lib/handler/koa-1.js +46 -0
- package/lib/handler/koa-2.js +46 -0
- package/lib/handler/node.js +62 -0
- package/lib/handler/vercel.js +56 -0
- package/lib/oidc.js +47 -0
- package/lib/profile.js +102 -0
- package/lib/request.js +69 -0
- package/lib/response.js +124 -0
- package/lib/session.js +106 -0
- package/lib/util.js +8 -0
- package/package.json +89 -0
@@ -0,0 +1,1195 @@
|
|
1
|
+
{
|
2
|
+
"23andme": {
|
3
|
+
"authorize_url": "https://api.23andme.com/authorize",
|
4
|
+
"access_url": "https://api.23andme.com/token",
|
5
|
+
"oauth": 2,
|
6
|
+
"scope_delimiter": " "
|
7
|
+
},
|
8
|
+
"500px": {
|
9
|
+
"request_url": "https://api.500px.com/v1/oauth/request_token",
|
10
|
+
"authorize_url": "https://api.500px.com/v1/oauth/authorize",
|
11
|
+
"access_url": "https://api.500px.com/v1/oauth/access_token",
|
12
|
+
"oauth": 1
|
13
|
+
},
|
14
|
+
"acton": {
|
15
|
+
"authorize_url": "https://restapi.actonsoftware.com/authorize",
|
16
|
+
"access_url": "https://restapi.actonsoftware.com/token",
|
17
|
+
"oauth": 2
|
18
|
+
},
|
19
|
+
"acuityscheduling": {
|
20
|
+
"authorize_url": "https://acuityscheduling.com/oauth2/authorize",
|
21
|
+
"access_url": "https://acuityscheduling.com/oauth2/token",
|
22
|
+
"oauth": 2
|
23
|
+
},
|
24
|
+
"adobe": {
|
25
|
+
"authorize_url": "https://ims-na1.adobelogin.com/ims/authorize/v2",
|
26
|
+
"access_url": "https://ims-na1.adobelogin.com/ims/token/v3",
|
27
|
+
"oauth": 2
|
28
|
+
},
|
29
|
+
"aha": {
|
30
|
+
"authorize_url": "https://[subdomain].aha.io/oauth/authorize",
|
31
|
+
"access_url": "https://[subdomain].aha.io/oauth/token",
|
32
|
+
"oauth": 2
|
33
|
+
},
|
34
|
+
"alchemer": {
|
35
|
+
"request_url": "https://api.alchemer.com/head/oauth/request_token",
|
36
|
+
"authorize_url": "https://api.alchemer.com/head/oauth/authenticate",
|
37
|
+
"access_url": "https://api.alchemer.com/head/oauth/access_token",
|
38
|
+
"oauth": 1
|
39
|
+
},
|
40
|
+
"amazon": {
|
41
|
+
"authorize_url": "https://www.amazon.com/ap/oa",
|
42
|
+
"access_url": "https://api.amazon.com/auth/o2/token",
|
43
|
+
"oauth": 2,
|
44
|
+
"scope_delimiter": " "
|
45
|
+
},
|
46
|
+
"angellist": {
|
47
|
+
"authorize_url": "https://angel.co/api/oauth/authorize",
|
48
|
+
"access_url": "https://angel.co/api/oauth/token",
|
49
|
+
"oauth": 2,
|
50
|
+
"scope_delimiter": " "
|
51
|
+
},
|
52
|
+
"apple": {
|
53
|
+
"authorize_url": "https://appleid.apple.com/auth/authorize",
|
54
|
+
"access_url": "https://appleid.apple.com/auth/token",
|
55
|
+
"oauth": 2,
|
56
|
+
"scope_delimiter": " "
|
57
|
+
},
|
58
|
+
"arcgis": {
|
59
|
+
"authorize_url": "https://www.arcgis.com/sharing/rest/oauth2/authorize",
|
60
|
+
"access_url": "https://www.arcgis.com/sharing/rest/oauth2/token",
|
61
|
+
"oauth": 2
|
62
|
+
},
|
63
|
+
"asana": {
|
64
|
+
"authorize_url": "https://app.asana.com/-/oauth_authorize",
|
65
|
+
"access_url": "https://app.asana.com/-/oauth_token",
|
66
|
+
"oauth": 2,
|
67
|
+
"scope_delimiter": " "
|
68
|
+
},
|
69
|
+
"assembla": {
|
70
|
+
"authorize_url": "https://api.assembla.com/authorization",
|
71
|
+
"access_url": "https://api.assembla.com/token",
|
72
|
+
"oauth": 2
|
73
|
+
},
|
74
|
+
"atlassian": {
|
75
|
+
"authorize_url": "https://auth.atlassian.com/authorize",
|
76
|
+
"access_url": "https://auth.atlassian.com/oauth/token",
|
77
|
+
"oauth": 2,
|
78
|
+
"scope_delimiter": " "
|
79
|
+
},
|
80
|
+
"auth0": {
|
81
|
+
"authorize_url": "https://[subdomain].auth0.com/authorize",
|
82
|
+
"access_url": "https://[subdomain].auth0.com/oauth/token",
|
83
|
+
"oauth": 2,
|
84
|
+
"scope_delimiter": " "
|
85
|
+
},
|
86
|
+
"authentik": {
|
87
|
+
"authorize_url": "https://[subdomain]/application/o/authorize/",
|
88
|
+
"access_url": "https://[subdomain]/application/o/token/",
|
89
|
+
"oauth": 2,
|
90
|
+
"scope_delimiter": " "
|
91
|
+
},
|
92
|
+
"authentiq": {
|
93
|
+
"authorize_url": "https://connect.authentiq.io/sign-in",
|
94
|
+
"access_url": "https://connect.authentiq.io/token",
|
95
|
+
"oauth": 2,
|
96
|
+
"scope_delimiter": " "
|
97
|
+
},
|
98
|
+
"authing": {
|
99
|
+
"authorize_url": "https://[subdomain].authing.cn/oidc/auth",
|
100
|
+
"access_url": "https://[subdomain].authing.cn/oidc/token",
|
101
|
+
"oauth": 2,
|
102
|
+
"scope_delimiter": " "
|
103
|
+
},
|
104
|
+
"autodesk": {
|
105
|
+
"authorize_url": "https://developer.api.autodesk.com/authentication/v2/authorize",
|
106
|
+
"access_url": "https://developer.api.autodesk.com/authentication/v2/token",
|
107
|
+
"oauth": 2,
|
108
|
+
"scope_delimiter": " "
|
109
|
+
},
|
110
|
+
"aweber": {
|
111
|
+
"authorize_url": "https://auth.aweber.com/oauth2/authorize",
|
112
|
+
"access_url": "https://auth.aweber.com/oauth2/token",
|
113
|
+
"oauth": 2,
|
114
|
+
"scope_delimiter": " "
|
115
|
+
},
|
116
|
+
"axosoft": {
|
117
|
+
"authorize_url": "https://[subdomain].axosoft.com/auth",
|
118
|
+
"access_url": "https://[subdomain].axosoft.com/api/oauth2/token",
|
119
|
+
"oauth": 2,
|
120
|
+
"scope_delimiter": " "
|
121
|
+
},
|
122
|
+
"baidu": {
|
123
|
+
"authorize_url": "https://openapi.baidu.com/oauth/2.0/authorize",
|
124
|
+
"access_url": "https://openapi.baidu.com/oauth/2.0/token",
|
125
|
+
"oauth": 2
|
126
|
+
},
|
127
|
+
"basecamp": {
|
128
|
+
"authorize_url": "https://launchpad.37signals.com/authorization/new",
|
129
|
+
"access_url": "https://launchpad.37signals.com/authorization/token",
|
130
|
+
"oauth": 2
|
131
|
+
},
|
132
|
+
"battlenet": {
|
133
|
+
"authorize_url": "https://[subdomain].battle.net/oauth/authorize",
|
134
|
+
"access_url": "https://[subdomain].battle.net/oauth/token",
|
135
|
+
"oauth": 2,
|
136
|
+
"scope_delimiter": " "
|
137
|
+
},
|
138
|
+
"beatport": {
|
139
|
+
"request_url": "https://oauth-api.beatport.com/identity/1/oauth/request-token",
|
140
|
+
"authorize_url": "https://oauth-api.beatport.com/identity/1/oauth/authorize",
|
141
|
+
"access_url": "https://oauth-api.beatport.com/identity/1/oauth/access-token",
|
142
|
+
"oauth": 1
|
143
|
+
},
|
144
|
+
"bitbucket": {
|
145
|
+
"authorize_url": "https://bitbucket.org/site/oauth2/authorize",
|
146
|
+
"access_url": "https://bitbucket.org/site/oauth2/access_token",
|
147
|
+
"oauth": 2,
|
148
|
+
"scope_delimiter": " "
|
149
|
+
},
|
150
|
+
"bitly": {
|
151
|
+
"authorize_url": "https://bitly.com/oauth/authorize",
|
152
|
+
"access_url": "https://api-ssl.bitly.com/oauth/access_token",
|
153
|
+
"oauth": 2
|
154
|
+
},
|
155
|
+
"box": {
|
156
|
+
"authorize_url": "https://api.box.com/oauth2/authorize",
|
157
|
+
"access_url": "https://api.box.com/oauth2/token",
|
158
|
+
"oauth": 2,
|
159
|
+
"scope_delimiter": " "
|
160
|
+
},
|
161
|
+
"buffer": {
|
162
|
+
"authorize_url": "https://bufferapp.com/oauth2/authorize",
|
163
|
+
"access_url": "https://api.bufferapp.com/1/oauth2/token.json",
|
164
|
+
"oauth": 2
|
165
|
+
},
|
166
|
+
"campaignmonitor": {
|
167
|
+
"authorize_url": "https://api.createsend.com/oauth",
|
168
|
+
"access_url": "https://api.createsend.com/oauth/token",
|
169
|
+
"oauth": 2
|
170
|
+
},
|
171
|
+
"cas": {
|
172
|
+
"authorize_url": "https://[subdomain]/oidc/authorize",
|
173
|
+
"access_url": "https://[subdomain]/oidc/token",
|
174
|
+
"oauth": 2
|
175
|
+
},
|
176
|
+
"cheddar": {
|
177
|
+
"authorize_url": "https://api.cheddarapp.com/oauth/authorize",
|
178
|
+
"access_url": "https://api.cheddarapp.com/oauth/token",
|
179
|
+
"oauth": 2
|
180
|
+
},
|
181
|
+
"clio": {
|
182
|
+
"authorize_url": "https://app.clio.com/oauth/authorize",
|
183
|
+
"access_url": "https://app.clio.com/oauth/token",
|
184
|
+
"oauth": 2
|
185
|
+
},
|
186
|
+
"cognito": {
|
187
|
+
"authorize_url": "https://[subdomain]/oauth2/authorize",
|
188
|
+
"access_url": "https://[subdomain]/oauth2/token",
|
189
|
+
"oauth": 2,
|
190
|
+
"scope_delimiter": " "
|
191
|
+
},
|
192
|
+
"coinbase": {
|
193
|
+
"authorize_url": "https://www.coinbase.com/oauth/authorize",
|
194
|
+
"access_url": "https://www.coinbase.com/oauth/token",
|
195
|
+
"oauth": 2,
|
196
|
+
"scope_delimiter": " "
|
197
|
+
},
|
198
|
+
"concur": {
|
199
|
+
"authorize_url": "https://[subdomain].api.concursolutions.com/oauth2/v0/authorize",
|
200
|
+
"access_url": "https://[subdomain].api.concursolutions.com/oauth2/v0/token",
|
201
|
+
"oauth": 2
|
202
|
+
},
|
203
|
+
"constantcontact": {
|
204
|
+
"authorize_url": "https://oauth2.constantcontact.com/oauth2/oauth/siteowner/authorize",
|
205
|
+
"access_url": "https://oauth2.constantcontact.com/oauth2/oauth/token",
|
206
|
+
"oauth": 2
|
207
|
+
},
|
208
|
+
"coursera": {
|
209
|
+
"authorize_url": "https://accounts.coursera.org/oauth2/v1/auth",
|
210
|
+
"access_url": "https://accounts.coursera.org/oauth2/v1/token",
|
211
|
+
"oauth": 2,
|
212
|
+
"scope_delimiter": " "
|
213
|
+
},
|
214
|
+
"crossid": {
|
215
|
+
"authorize_url": "https://[subdomain].crossid.io/oauth2/auth",
|
216
|
+
"access_url": "https://[subdomain].crossid.io/oauth2/token",
|
217
|
+
"oauth": 2,
|
218
|
+
"scope_delimiter": " "
|
219
|
+
},
|
220
|
+
"dailymotion": {
|
221
|
+
"authorize_url": "https://www.dailymotion.com/oauth/authorize",
|
222
|
+
"access_url": "https://api.dailymotion.com/oauth/token",
|
223
|
+
"oauth": 2
|
224
|
+
},
|
225
|
+
"deezer": {
|
226
|
+
"authorize_url": "https://connect.deezer.com/oauth/auth.php",
|
227
|
+
"access_url": "https://connect.deezer.com/oauth/access_token.php",
|
228
|
+
"oauth": 2
|
229
|
+
},
|
230
|
+
"delivery": {
|
231
|
+
"authorize_url": "https://api.delivery.com/third_party/authorize",
|
232
|
+
"access_url": "https://api.delivery.com/third_party/access_token",
|
233
|
+
"oauth": 2
|
234
|
+
},
|
235
|
+
"deputy": {
|
236
|
+
"authorize_url": "https://once.deputy.com/my/oauth/login",
|
237
|
+
"access_url": "https://once.deputy.com/my/oauth/access_token",
|
238
|
+
"oauth": 2
|
239
|
+
},
|
240
|
+
"deviantart": {
|
241
|
+
"authorize_url": "https://www.deviantart.com/oauth2/authorize",
|
242
|
+
"access_url": "https://www.deviantart.com/oauth2/token",
|
243
|
+
"oauth": 2,
|
244
|
+
"scope_delimiter": " "
|
245
|
+
},
|
246
|
+
"digitalocean": {
|
247
|
+
"authorize_url": "https://cloud.digitalocean.com/v1/oauth/authorize",
|
248
|
+
"access_url": "https://cloud.digitalocean.com/v1/oauth/token",
|
249
|
+
"oauth": 2,
|
250
|
+
"scope_delimiter": " "
|
251
|
+
},
|
252
|
+
"discogs": {
|
253
|
+
"request_url": "https://api.discogs.com/oauth/request_token",
|
254
|
+
"authorize_url": "https://discogs.com/oauth/authorize",
|
255
|
+
"access_url": "https://api.discogs.com/oauth/access_token",
|
256
|
+
"oauth": 1
|
257
|
+
},
|
258
|
+
"discord": {
|
259
|
+
"authorize_url": "https://discord.com/api/oauth2/authorize",
|
260
|
+
"access_url": "https://discord.com/api/oauth2/token",
|
261
|
+
"oauth": 2,
|
262
|
+
"scope_delimiter": " "
|
263
|
+
},
|
264
|
+
"disqus": {
|
265
|
+
"authorize_url": "https://disqus.com/api/oauth/2.0/authorize/",
|
266
|
+
"access_url": "https://disqus.com/api/oauth/2.0/access_token/",
|
267
|
+
"oauth": 2
|
268
|
+
},
|
269
|
+
"docusign": {
|
270
|
+
"authorize_url": "https://account.docusign.com/oauth/auth",
|
271
|
+
"access_url": "https://account.docusign.com/oauth/token",
|
272
|
+
"oauth": 2
|
273
|
+
},
|
274
|
+
"dribbble": {
|
275
|
+
"authorize_url": "https://dribbble.com/oauth/authorize",
|
276
|
+
"access_url": "https://dribbble.com/oauth/token",
|
277
|
+
"oauth": 2,
|
278
|
+
"scope_delimiter": " "
|
279
|
+
},
|
280
|
+
"dropbox": {
|
281
|
+
"authorize_url": "https://www.dropbox.com/oauth2/authorize",
|
282
|
+
"access_url": "https://api.dropboxapi.com/oauth2/token",
|
283
|
+
"oauth": 2
|
284
|
+
},
|
285
|
+
"ebay": {
|
286
|
+
"authorize_url": "https://signin.ebay.com/authorize",
|
287
|
+
"access_url": "https://api.ebay.com/identity/v1/oauth2/token",
|
288
|
+
"oauth": 2,
|
289
|
+
"scope_delimiter": " "
|
290
|
+
},
|
291
|
+
"echosign": {
|
292
|
+
"authorize_url": "https://secure.echosign.com/public/oauth",
|
293
|
+
"access_url": "https://secure.echosign.com/oauth/token",
|
294
|
+
"oauth": 2,
|
295
|
+
"scope_delimiter": " "
|
296
|
+
},
|
297
|
+
"ecwid": {
|
298
|
+
"authorize_url": "https://my.ecwid.com/api/oauth/authorize",
|
299
|
+
"access_url": "https://my.ecwid.com/api/oauth/token",
|
300
|
+
"oauth": 2,
|
301
|
+
"scope_delimiter": " "
|
302
|
+
},
|
303
|
+
"edmodo": {
|
304
|
+
"authorize_url": "https://api.edmodo.com/oauth/authorize",
|
305
|
+
"access_url": "https://api.edmodo.com/oauth/token",
|
306
|
+
"oauth": 2,
|
307
|
+
"scope_delimiter": " "
|
308
|
+
},
|
309
|
+
"egnyte": {
|
310
|
+
"authorize_url": "https://[subdomain].egnyte.com/puboauth/token",
|
311
|
+
"access_url": "https://[subdomain].egnyte.com/puboauth/token",
|
312
|
+
"oauth": 2,
|
313
|
+
"scope_delimiter": " "
|
314
|
+
},
|
315
|
+
"etsy": {
|
316
|
+
"request_url": "https://openapi.etsy.com/v2/oauth/request_token",
|
317
|
+
"authorize_url": "https://www.etsy.com/oauth/signin",
|
318
|
+
"access_url": "https://openapi.etsy.com/v2/oauth/access_token",
|
319
|
+
"oauth": 1,
|
320
|
+
"scope_delimiter": " "
|
321
|
+
},
|
322
|
+
"eventbrite": {
|
323
|
+
"authorize_url": "https://www.eventbrite.com/oauth/authorize",
|
324
|
+
"access_url": "https://www.eventbrite.com/oauth/token",
|
325
|
+
"oauth": 2
|
326
|
+
},
|
327
|
+
"evernote": {
|
328
|
+
"request_url": "https://www.evernote.com/oauth",
|
329
|
+
"authorize_url": "https://www.evernote.com/OAuth.action",
|
330
|
+
"access_url": "https://www.evernote.com/oauth",
|
331
|
+
"oauth": 1
|
332
|
+
},
|
333
|
+
"eyeem": {
|
334
|
+
"authorize_url": "https://www.eyeem.com/oauth/authorize",
|
335
|
+
"access_url": "https://api.eyeem.com/v2/oauth/token",
|
336
|
+
"oauth": 2
|
337
|
+
},
|
338
|
+
"facebook": {
|
339
|
+
"authorize_url": "https://www.facebook.com/dialog/oauth",
|
340
|
+
"access_url": "https://graph.facebook.com/oauth/access_token",
|
341
|
+
"oauth": 2
|
342
|
+
},
|
343
|
+
"familysearch": {
|
344
|
+
"authorize_url": "https://ident.familysearch.org/cis-web/oauth2/v3/authorization",
|
345
|
+
"access_url": "https://ident.familysearch.org/cis-web/oauth2/v3/token",
|
346
|
+
"oauth": 2,
|
347
|
+
"scope_delimiter": " "
|
348
|
+
},
|
349
|
+
"feedly": {
|
350
|
+
"authorize_url": "https://cloud.feedly.com/v3/auth/auth",
|
351
|
+
"access_url": "https://cloud.feedly.com/v3/auth/token",
|
352
|
+
"oauth": 2
|
353
|
+
},
|
354
|
+
"figma": {
|
355
|
+
"authorize_url": "https://www.figma.com/oauth",
|
356
|
+
"access_url": "https://www.figma.com/api/oauth/token",
|
357
|
+
"oauth": 2
|
358
|
+
},
|
359
|
+
"fitbit": {
|
360
|
+
"authorize_url": "https://www.fitbit.com/oauth2/authorize",
|
361
|
+
"access_url": "https://api.fitbit.com/oauth2/token",
|
362
|
+
"oauth": 2,
|
363
|
+
"scope_delimiter": " "
|
364
|
+
},
|
365
|
+
"flickr": {
|
366
|
+
"request_url": "https://www.flickr.com/services/oauth/request_token",
|
367
|
+
"authorize_url": "https://www.flickr.com/services/oauth/authorize",
|
368
|
+
"access_url": "https://www.flickr.com/services/oauth/access_token",
|
369
|
+
"oauth": 1
|
370
|
+
},
|
371
|
+
"formstack": {
|
372
|
+
"authorize_url": "https://www.formstack.com/api/v2/oauth2/authorize",
|
373
|
+
"access_url": "https://www.formstack.com/api/v2/oauth2/token",
|
374
|
+
"oauth": 2
|
375
|
+
},
|
376
|
+
"foursquare": {
|
377
|
+
"authorize_url": "https://foursquare.com/oauth2/authenticate",
|
378
|
+
"access_url": "https://foursquare.com/oauth2/access_token",
|
379
|
+
"oauth": 2
|
380
|
+
},
|
381
|
+
"freeagent": {
|
382
|
+
"authorize_url": "https://api.freeagent.com/v2/approve_app",
|
383
|
+
"access_url": "https://api.freeagent.com/v2/token_endpoint",
|
384
|
+
"oauth": 2
|
385
|
+
},
|
386
|
+
"freelancer": {
|
387
|
+
"authorize_url": "https://accounts.freelancer.com/oauth/authorize",
|
388
|
+
"access_url": "https://accounts.freelancer.com/oauth/token",
|
389
|
+
"oauth": 2,
|
390
|
+
"scope_delimiter": " "
|
391
|
+
},
|
392
|
+
"freshbooks": {
|
393
|
+
"request_url": "https://[subdomain].freshbooks.com/oauth/oauth_request.php",
|
394
|
+
"authorize_url": "https://[subdomain].freshbooks.com/oauth/oauth_authorize.php",
|
395
|
+
"access_url": "https://[subdomain].freshbooks.com/oauth/oauth_access.php",
|
396
|
+
"oauth": 1
|
397
|
+
},
|
398
|
+
"fusionauth": {
|
399
|
+
"authorize_url": "https://[subdomain]/oauth2/authorize",
|
400
|
+
"access_url": "https://[subdomain]/oauth2/token",
|
401
|
+
"oauth": 2,
|
402
|
+
"scope_delimiter": " "
|
403
|
+
},
|
404
|
+
"garmin": {
|
405
|
+
"request_url": "https://connectapi.garmin.com/oauth-service/oauth/request_token",
|
406
|
+
"authorize_url": "https://connect.garmin.com/oauthConfirm",
|
407
|
+
"access_url": "https://connectapi.garmin.com/oauth-service/oauth/access_token",
|
408
|
+
"oauth": 1
|
409
|
+
},
|
410
|
+
"geeklist": {
|
411
|
+
"request_url": "https://api.geekli.st/v1/oauth/request_token",
|
412
|
+
"authorize_url": "https://geekli.st/oauth/authorize",
|
413
|
+
"access_url": "https://api.geekli.st/v1/oauth/access_token",
|
414
|
+
"oauth": 1
|
415
|
+
},
|
416
|
+
"genius": {
|
417
|
+
"authorize_url": "https://api.genius.com/oauth/authorize",
|
418
|
+
"access_url": "https://api.genius.com/oauth/token",
|
419
|
+
"oauth": 2,
|
420
|
+
"scope_delimiter": " "
|
421
|
+
},
|
422
|
+
"getbase": {
|
423
|
+
"authorize_url": "https://api.getbase.com/oauth2/authorize",
|
424
|
+
"access_url": "https://api.getbase.com/oauth2/token",
|
425
|
+
"oauth": 2,
|
426
|
+
"scope_delimiter": " "
|
427
|
+
},
|
428
|
+
"getpocket": {
|
429
|
+
"request_url": "https://getpocket.com/v3/oauth/request",
|
430
|
+
"authorize_url": "https://getpocket.com/auth/authorize",
|
431
|
+
"access_url": "https://getpocket.com/v3/oauth/authorize",
|
432
|
+
"oauth": 1
|
433
|
+
},
|
434
|
+
"gitbook": {
|
435
|
+
"authorize_url": "https://api.gitbook.com/oauth/authorize",
|
436
|
+
"access_url": "https://api.gitbook.com/oauth/access_token",
|
437
|
+
"oauth": 2
|
438
|
+
},
|
439
|
+
"github": {
|
440
|
+
"authorize_url": "https://github.com/login/oauth/authorize",
|
441
|
+
"access_url": "https://github.com/login/oauth/access_token",
|
442
|
+
"oauth": 2
|
443
|
+
},
|
444
|
+
"gitlab": {
|
445
|
+
"authorize_url": "https://gitlab.com/oauth/authorize",
|
446
|
+
"access_url": "https://gitlab.com/oauth/token",
|
447
|
+
"oauth": 2,
|
448
|
+
"scope_delimiter": " "
|
449
|
+
},
|
450
|
+
"gitter": {
|
451
|
+
"authorize_url": "https://gitter.im/login/oauth/authorize",
|
452
|
+
"access_url": "https://gitter.im/login/oauth/token",
|
453
|
+
"oauth": 2
|
454
|
+
},
|
455
|
+
"goodreads": {
|
456
|
+
"request_url": "https://www.goodreads.com/oauth/request_token",
|
457
|
+
"authorize_url": "https://www.goodreads.com/oauth/authorize",
|
458
|
+
"access_url": "https://www.goodreads.com/oauth/access_token",
|
459
|
+
"oauth": 1
|
460
|
+
},
|
461
|
+
"google": {
|
462
|
+
"authorize_url": "https://accounts.google.com/o/oauth2/v2/auth",
|
463
|
+
"access_url": "https://oauth2.googleapis.com/token",
|
464
|
+
"oauth": 2,
|
465
|
+
"scope_delimiter": " "
|
466
|
+
},
|
467
|
+
"groove": {
|
468
|
+
"authorize_url": "https://api.groovehq.com/oauth/authorize",
|
469
|
+
"access_url": "https://api.groovehq.com/oauth/token",
|
470
|
+
"oauth": 2
|
471
|
+
},
|
472
|
+
"gumroad": {
|
473
|
+
"authorize_url": "https://gumroad.com/oauth/authorize",
|
474
|
+
"access_url": "https://gumroad.com/oauth/token",
|
475
|
+
"oauth": 2,
|
476
|
+
"scope_delimiter": " "
|
477
|
+
},
|
478
|
+
"harvest": {
|
479
|
+
"authorize_url": "https://api.harvestapp.com/oauth2/authorize",
|
480
|
+
"access_url": "https://api.harvestapp.com/oauth2/token",
|
481
|
+
"oauth": 2
|
482
|
+
},
|
483
|
+
"hellosign": {
|
484
|
+
"authorize_url": "https://www.hellosign.com/oauth/authorize",
|
485
|
+
"access_url": "https://www.hellosign.com/oauth/token",
|
486
|
+
"oauth": 2
|
487
|
+
},
|
488
|
+
"heroku": {
|
489
|
+
"authorize_url": "https://id.heroku.com/oauth/authorize",
|
490
|
+
"access_url": "https://id.heroku.com/oauth/token",
|
491
|
+
"oauth": 2
|
492
|
+
},
|
493
|
+
"homeaway": {
|
494
|
+
"authorize_url": "https://ws.homeaway.com/oauth/authorize",
|
495
|
+
"access_url": "https://ws.homeaway.com/oauth/token",
|
496
|
+
"oauth": 2
|
497
|
+
},
|
498
|
+
"hootsuite": {
|
499
|
+
"authorize_url": "https://platform.hootsuite.com/oauth2/auth",
|
500
|
+
"access_url": "https://platform.hootsuite.com/oauth2/token",
|
501
|
+
"oauth": 2
|
502
|
+
},
|
503
|
+
"huddle": {
|
504
|
+
"authorize_url": "https://login.huddle.net/request",
|
505
|
+
"access_url": "https://login.huddle.net/token",
|
506
|
+
"oauth": 2
|
507
|
+
},
|
508
|
+
"ibm": {
|
509
|
+
"authorize_url": "https://login.ibm.com/oidc/endpoint/default/authorize",
|
510
|
+
"access_url": "https://login.ibm.com/oidc/endpoint/default/token",
|
511
|
+
"oauth": 2
|
512
|
+
},
|
513
|
+
"iconfinder": {
|
514
|
+
"authorize_url": "https://www.iconfinder.com/api/v2/oauth2/authorize",
|
515
|
+
"access_url": "https://www.iconfinder.com/api/v2/oauth2/token",
|
516
|
+
"oauth": 2
|
517
|
+
},
|
518
|
+
"idme": {
|
519
|
+
"authorize_url": "https://api.id.me/oauth/authorize",
|
520
|
+
"access_url": "https://api.id.me/oauth/token",
|
521
|
+
"oauth": 2
|
522
|
+
},
|
523
|
+
"idonethis": {
|
524
|
+
"authorize_url": "https://idonethis.com/api/oauth2/authorize/",
|
525
|
+
"access_url": "https://idonethis.com/api/oauth2/token/",
|
526
|
+
"oauth": 2
|
527
|
+
},
|
528
|
+
"imgur": {
|
529
|
+
"authorize_url": "https://api.imgur.com/oauth2/authorize",
|
530
|
+
"access_url": "https://api.imgur.com/oauth2/token",
|
531
|
+
"oauth": 2
|
532
|
+
},
|
533
|
+
"infusionsoft": {
|
534
|
+
"authorize_url": "https://signin.infusionsoft.com/app/oauth/authorize",
|
535
|
+
"access_url": "https://api.infusionsoft.com/token",
|
536
|
+
"oauth": 2
|
537
|
+
},
|
538
|
+
"instagram": {
|
539
|
+
"authorize_url": "https://api.instagram.com/oauth/authorize",
|
540
|
+
"access_url": "https://api.instagram.com/oauth/access_token",
|
541
|
+
"oauth": 2,
|
542
|
+
"scope_delimiter": " "
|
543
|
+
},
|
544
|
+
"intuit": {
|
545
|
+
"authorize_url": "https://appcenter.intuit.com/connect/oauth2",
|
546
|
+
"access_url": "https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer",
|
547
|
+
"oauth": 2,
|
548
|
+
"scope_delimiter": " "
|
549
|
+
},
|
550
|
+
"jamendo": {
|
551
|
+
"authorize_url": "https://api.jamendo.com/v3.0/oauth/authorize",
|
552
|
+
"access_url": "https://api.jamendo.com/v3.0/oauth/grant",
|
553
|
+
"oauth": 2
|
554
|
+
},
|
555
|
+
"jumplead": {
|
556
|
+
"authorize_url": "https://account.mooloop.com/oauth/authorize",
|
557
|
+
"access_url": "https://account.mooloop.com/oauth/access_token",
|
558
|
+
"oauth": 2
|
559
|
+
},
|
560
|
+
"kakao": {
|
561
|
+
"authorize_url": "https://kauth.kakao.com/oauth/authorize",
|
562
|
+
"access_url": "https://kauth.kakao.com/oauth/token",
|
563
|
+
"oauth": 2
|
564
|
+
},
|
565
|
+
"keycloak": {
|
566
|
+
"authorize_url": "https://[subdomain]/protocol/openid-connect/auth",
|
567
|
+
"access_url": "https://[subdomain]/protocol/openid-connect/token",
|
568
|
+
"oauth": 2,
|
569
|
+
"scope_delimiter": " "
|
570
|
+
},
|
571
|
+
"line": {
|
572
|
+
"authorize_url": "https://access.line.me/oauth2/v2.1/authorize",
|
573
|
+
"access_url": "https://api.line.me/oauth2/v2.1/token",
|
574
|
+
"oauth": 2,
|
575
|
+
"scope_delimiter": " "
|
576
|
+
},
|
577
|
+
"linkedin": {
|
578
|
+
"authorize_url": "https://www.linkedin.com/oauth/v2/authorization",
|
579
|
+
"access_url": "https://www.linkedin.com/oauth/v2/accessToken",
|
580
|
+
"oauth": 2,
|
581
|
+
"scope_delimiter": " "
|
582
|
+
},
|
583
|
+
"live": {
|
584
|
+
"authorize_url": "https://login.live.com/oauth20_authorize.srf",
|
585
|
+
"access_url": "https://login.live.com/oauth20_token.srf",
|
586
|
+
"oauth": 2
|
587
|
+
},
|
588
|
+
"livechat": {
|
589
|
+
"authorize_url": "https://accounts.livechatinc.com/",
|
590
|
+
"access_url": "https://accounts.livechatinc.com/token",
|
591
|
+
"oauth": 2
|
592
|
+
},
|
593
|
+
"logingov": {
|
594
|
+
"authorize_url": "https://idp.int.identitysandbox.gov/openid_connect/authorize",
|
595
|
+
"access_url": "https://idp.int.identitysandbox.gov/api/openid_connect/token",
|
596
|
+
"oauth": 2,
|
597
|
+
"scope_delimiter": " "
|
598
|
+
},
|
599
|
+
"lyft": {
|
600
|
+
"authorize_url": "https://api.lyft.com/oauth/authorize",
|
601
|
+
"access_url": "https://api.lyft.com/oauth/token",
|
602
|
+
"oauth": 2,
|
603
|
+
"scope_delimiter": " "
|
604
|
+
},
|
605
|
+
"mailchimp": {
|
606
|
+
"authorize_url": "https://login.mailchimp.com/oauth2/authorize",
|
607
|
+
"access_url": "https://login.mailchimp.com/oauth2/token",
|
608
|
+
"oauth": 2
|
609
|
+
},
|
610
|
+
"mailup": {
|
611
|
+
"authorize_url": "https://services.mailup.com/Authorization/OAuth/Authorization",
|
612
|
+
"access_url": "https://services.mailup.com/Authorization/OAuth/Token",
|
613
|
+
"oauth": 2
|
614
|
+
},
|
615
|
+
"mailxpert": {
|
616
|
+
"authorize_url": "https://app.mailxpert.ch/oauth/v2/auth",
|
617
|
+
"access_url": "https://app.mailxpert.ch/oauth/v2/token",
|
618
|
+
"oauth": 2
|
619
|
+
},
|
620
|
+
"mapmyfitness": {
|
621
|
+
"authorize_url": "https://www.mapmyfitness.com/v7.1/oauth2/uacf/authorize",
|
622
|
+
"access_url": "https://api.mapmyfitness.com/v7.1/oauth2/access_token",
|
623
|
+
"oauth": 2
|
624
|
+
},
|
625
|
+
"mastodon": {
|
626
|
+
"authorize_url": "https://[subdomain]/oauth/authorize",
|
627
|
+
"access_url": "https://[subdomain]/oauth/token",
|
628
|
+
"oauth": 2,
|
629
|
+
"scope_delimiter": " "
|
630
|
+
},
|
631
|
+
"medium": {
|
632
|
+
"authorize_url": "https://medium.com/m/oauth/authorize",
|
633
|
+
"access_url": "https://api.medium.com/v1/tokens",
|
634
|
+
"oauth": 2
|
635
|
+
},
|
636
|
+
"meetup": {
|
637
|
+
"authorize_url": "https://secure.meetup.com/oauth2/authorize",
|
638
|
+
"access_url": "https://secure.meetup.com/oauth2/access",
|
639
|
+
"oauth": 2,
|
640
|
+
"scope_delimiter": " "
|
641
|
+
},
|
642
|
+
"mendeley": {
|
643
|
+
"authorize_url": "https://api.mendeley.com/oauth/authorize",
|
644
|
+
"access_url": "https://api.mendeley.com/oauth/token",
|
645
|
+
"oauth": 2
|
646
|
+
},
|
647
|
+
"mention": {
|
648
|
+
"authorize_url": "https://web.mention.com/authorize",
|
649
|
+
"access_url": "https://web.mention.net/oauth/v2/token",
|
650
|
+
"oauth": 2
|
651
|
+
},
|
652
|
+
"microsoft": {
|
653
|
+
"authorize_url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
|
654
|
+
"access_url": "https://login.microsoftonline.com/common/oauth2/v2.0/token",
|
655
|
+
"oauth": 2,
|
656
|
+
"scope_delimiter": " "
|
657
|
+
},
|
658
|
+
"mixcloud": {
|
659
|
+
"authorize_url": "https://www.mixcloud.com/oauth/authorize",
|
660
|
+
"access_url": "https://www.mixcloud.com/oauth/access_token",
|
661
|
+
"oauth": 2
|
662
|
+
},
|
663
|
+
"moxtra": {
|
664
|
+
"authorize_url": "https://api.moxtra.com/oauth/authorize",
|
665
|
+
"access_url": "https://api.moxtra.com/oauth/token",
|
666
|
+
"oauth": 2,
|
667
|
+
"scope_delimiter": " "
|
668
|
+
},
|
669
|
+
"myob": {
|
670
|
+
"authorize_url": "https://secure.myob.com/oauth2/account/authorize",
|
671
|
+
"access_url": "https://secure.myob.com/oauth2/v1/authorize",
|
672
|
+
"oauth": 2
|
673
|
+
},
|
674
|
+
"naver": {
|
675
|
+
"authorize_url": "https://nid.naver.com/oauth2.0/authorize",
|
676
|
+
"access_url": "https://nid.naver.com/oauth2.0/token",
|
677
|
+
"oauth": 2
|
678
|
+
},
|
679
|
+
"nest": {
|
680
|
+
"authorize_url": "https://home.nest.com/login/oauth2",
|
681
|
+
"access_url": "https://api.home.nest.com/oauth2/access_token",
|
682
|
+
"oauth": 2
|
683
|
+
},
|
684
|
+
"netlify": {
|
685
|
+
"authorize_url": "https://app.netlify.com/authorize",
|
686
|
+
"access_url": "https://api.netlify.com/oauth/token",
|
687
|
+
"oauth": 2
|
688
|
+
},
|
689
|
+
"nokotime": {
|
690
|
+
"authorize_url": "https://secure.nokotime.com/oauth/2/authorize",
|
691
|
+
"access_url": "https://secure.nokotime.com/oauth/2/access_token",
|
692
|
+
"oauth": 2
|
693
|
+
},
|
694
|
+
"notion": {
|
695
|
+
"authorize_url": "https://api.notion.com/v1/oauth/authorize",
|
696
|
+
"access_url": "https://api.notion.com/v1/oauth/token",
|
697
|
+
"oauth": 2
|
698
|
+
},
|
699
|
+
"nylas": {
|
700
|
+
"authorize_url": "https://api.nylas.com/oauth/authorize",
|
701
|
+
"access_url": "https://api.nylas.com/oauth/token",
|
702
|
+
"oauth": 2
|
703
|
+
},
|
704
|
+
"okta": {
|
705
|
+
"authorize_url": "https://[subdomain].okta.com/oauth2/v1/authorize",
|
706
|
+
"access_url": "https://[subdomain].okta.com/oauth2/v1/token",
|
707
|
+
"oauth": 2,
|
708
|
+
"scope_delimiter": " "
|
709
|
+
},
|
710
|
+
"onelogin": {
|
711
|
+
"authorize_url": "https://[subdomain].onelogin.com/oidc/auth",
|
712
|
+
"access_url": "https://[subdomain].onelogin.com/oidc/token",
|
713
|
+
"oauth": 2,
|
714
|
+
"scope_delimiter": " "
|
715
|
+
},
|
716
|
+
"openstreetmap": {
|
717
|
+
"request_url": "https://www.openstreetmap.org/oauth/request_token",
|
718
|
+
"authorize_url": "https://www.openstreetmap.org/oauth/authorize",
|
719
|
+
"access_url": "https://www.openstreetmap.org/oauth/access_token",
|
720
|
+
"oauth": 1
|
721
|
+
},
|
722
|
+
"openstreetmap2": {
|
723
|
+
"authorize_url": "https://www.openstreetmap.org/oauth2/authorize",
|
724
|
+
"access_url": "https://www.openstreetmap.org/oauth2/token",
|
725
|
+
"oauth": 2,
|
726
|
+
"scope_delimiter": " "
|
727
|
+
},
|
728
|
+
"optimizely": {
|
729
|
+
"authorize_url": "https://app.optimizely.com/oauth2/authorize",
|
730
|
+
"access_url": "https://app.optimizely.com/oauth2/token",
|
731
|
+
"oauth": 2
|
732
|
+
},
|
733
|
+
"osu": {
|
734
|
+
"authorize_url": "https://osu.ppy.sh/oauth/authorize",
|
735
|
+
"access_url": "https://osu.ppy.sh/oauth/token",
|
736
|
+
"oauth": 2,
|
737
|
+
"scope_delimiter": " "
|
738
|
+
},
|
739
|
+
"patreon": {
|
740
|
+
"authorize_url": "https://www.patreon.com/oauth2/authorize",
|
741
|
+
"access_url": "https://www.patreon.com/api/oauth2/token",
|
742
|
+
"oauth": 2,
|
743
|
+
"scope_delimiter": " "
|
744
|
+
},
|
745
|
+
"paypal": {
|
746
|
+
"authorize_url": "https://www.paypal.com/webapps/auth/protocol/openidconnect/v1/authorize",
|
747
|
+
"access_url": "https://api.paypal.com/v1/identity/openidconnect/tokenservice",
|
748
|
+
"oauth": 2,
|
749
|
+
"scope_delimiter": " "
|
750
|
+
},
|
751
|
+
"phantauth": {
|
752
|
+
"authorize_url": "https://phantauth.net/auth/authorize",
|
753
|
+
"access_url": "https://phantauth.net/auth/token",
|
754
|
+
"oauth": 2,
|
755
|
+
"scope_delimiter": " "
|
756
|
+
},
|
757
|
+
"pinterest": {
|
758
|
+
"authorize_url": "https://api.pinterest.com/oauth/",
|
759
|
+
"access_url": "https://api.pinterest.com/v1/oauth/token",
|
760
|
+
"oauth": 2
|
761
|
+
},
|
762
|
+
"plurk": {
|
763
|
+
"request_url": "https://www.plurk.com/OAuth/request_token",
|
764
|
+
"authorize_url": "https://www.plurk.com/OAuth/authorize",
|
765
|
+
"access_url": "https://www.plurk.com/OAuth/access_token",
|
766
|
+
"oauth": 1
|
767
|
+
},
|
768
|
+
"podio": {
|
769
|
+
"authorize_url": "https://podio.com/oauth/authorize",
|
770
|
+
"access_url": "https://podio.com/oauth/token",
|
771
|
+
"oauth": 2
|
772
|
+
},
|
773
|
+
"procore": {
|
774
|
+
"authorize_url": "https://login.procore.com/oauth/authorize",
|
775
|
+
"access_url": "https://login.procore.com/oauth/token",
|
776
|
+
"oauth": 2
|
777
|
+
},
|
778
|
+
"producthunt": {
|
779
|
+
"authorize_url": "https://api.producthunt.com/v1/oauth/authorize",
|
780
|
+
"access_url": "https://api.producthunt.com/v1/oauth/token",
|
781
|
+
"oauth": 2,
|
782
|
+
"scope_delimiter": " "
|
783
|
+
},
|
784
|
+
"projectplace": {
|
785
|
+
"request_url": "https://api.projectplace.com/initiate",
|
786
|
+
"authorize_url": "https://api.projectplace.com/authorize",
|
787
|
+
"access_url": "https://api.projectplace.com/token",
|
788
|
+
"oauth": 1
|
789
|
+
},
|
790
|
+
"projectplace2": {
|
791
|
+
"authorize_url": "https://api.projectplace.com/oauth2/authorize",
|
792
|
+
"access_url": "https://api.projectplace.com/oauth2/access_token",
|
793
|
+
"oauth": 2
|
794
|
+
},
|
795
|
+
"pushbullet": {
|
796
|
+
"authorize_url": "https://www.pushbullet.com/authorize",
|
797
|
+
"access_url": "https://api.pushbullet.com/oauth2/token",
|
798
|
+
"oauth": 2
|
799
|
+
},
|
800
|
+
"qq": {
|
801
|
+
"authorize_url": "https://graph.qq.com/oauth2.0/authorize",
|
802
|
+
"access_url": "https://graph.qq.com/oauth2.0/token",
|
803
|
+
"oauth": 2
|
804
|
+
},
|
805
|
+
"ravelry": {
|
806
|
+
"request_url": "https://www.ravelry.com/oauth/request_token",
|
807
|
+
"authorize_url": "https://www.ravelry.com/oauth/authorize",
|
808
|
+
"access_url": "https://www.ravelry.com/oauth/access_token",
|
809
|
+
"oauth": 1,
|
810
|
+
"scope_delimiter": " "
|
811
|
+
},
|
812
|
+
"redbooth": {
|
813
|
+
"authorize_url": "https://redbooth.com/oauth2/authorize",
|
814
|
+
"access_url": "https://redbooth.com/oauth2/token",
|
815
|
+
"oauth": 2
|
816
|
+
},
|
817
|
+
"reddit": {
|
818
|
+
"authorize_url": "https://ssl.reddit.com/api/v1/authorize",
|
819
|
+
"access_url": "https://ssl.reddit.com/api/v1/access_token",
|
820
|
+
"oauth": 2
|
821
|
+
},
|
822
|
+
"runkeeper": {
|
823
|
+
"authorize_url": "https://runkeeper.com/apps/authorize",
|
824
|
+
"access_url": "https://runkeeper.com/apps/token",
|
825
|
+
"oauth": 2
|
826
|
+
},
|
827
|
+
"salesforce": {
|
828
|
+
"authorize_url": "https://login.salesforce.com/services/oauth2/authorize",
|
829
|
+
"access_url": "https://login.salesforce.com/services/oauth2/token",
|
830
|
+
"oauth": 2,
|
831
|
+
"scope_delimiter": " "
|
832
|
+
},
|
833
|
+
"sellsy": {
|
834
|
+
"request_url": "https://apifeed.sellsy.com/0/request_token",
|
835
|
+
"authorize_url": "https://apifeed.sellsy.com/0/login.php",
|
836
|
+
"access_url": "https://apifeed.sellsy.com/0/oauth/access_token",
|
837
|
+
"oauth": 1
|
838
|
+
},
|
839
|
+
"shoeboxed": {
|
840
|
+
"authorize_url": "https://id.shoeboxed.com/oauth/authorize",
|
841
|
+
"access_url": "https://id.shoeboxed.com/oauth/token",
|
842
|
+
"oauth": 2
|
843
|
+
},
|
844
|
+
"shopify": {
|
845
|
+
"authorize_url": "https://[subdomain].myshopify.com/admin/oauth/authorize",
|
846
|
+
"access_url": "https://[subdomain].myshopify.com/admin/oauth/access_token",
|
847
|
+
"oauth": 2
|
848
|
+
},
|
849
|
+
"skyrock": {
|
850
|
+
"request_url": "https://api.skyrock.com/v2/oauth/initiate",
|
851
|
+
"authorize_url": "https://api.skyrock.com/v2/oauth/authorize",
|
852
|
+
"access_url": "https://api.skyrock.com/v2/oauth/token",
|
853
|
+
"oauth": 1
|
854
|
+
},
|
855
|
+
"slack": {
|
856
|
+
"authorize_url": "https://slack.com/oauth/authorize",
|
857
|
+
"access_url": "https://slack.com/api/oauth.access",
|
858
|
+
"oauth": 2
|
859
|
+
},
|
860
|
+
"slice": {
|
861
|
+
"authorize_url": "https://api.slice.com/oauth/authorize",
|
862
|
+
"access_url": "https://api.slice.com/oauth/token",
|
863
|
+
"oauth": 2
|
864
|
+
},
|
865
|
+
"smartsheet": {
|
866
|
+
"authorize_url": "https://app.smartsheet.com/b/authorize",
|
867
|
+
"access_url": "https://api.smartsheet.com/2.0/token",
|
868
|
+
"oauth": 2,
|
869
|
+
"scope_delimiter": " "
|
870
|
+
},
|
871
|
+
"smugmug": {
|
872
|
+
"request_url": "https://api.smugmug.com/services/oauth/1.0a/getRequestToken",
|
873
|
+
"authorize_url": "https://api.smugmug.com/services/oauth/1.0a/authorize",
|
874
|
+
"access_url": "https://api.smugmug.com/services/oauth/1.0a/getAccessToken",
|
875
|
+
"oauth": 1
|
876
|
+
},
|
877
|
+
"snapchat": {
|
878
|
+
"authorize_url": "https://accounts.snapchat.com/accounts/oauth2/auth",
|
879
|
+
"access_url": "https://accounts.snapchat.com/accounts/oauth2/token",
|
880
|
+
"oauth": 2,
|
881
|
+
"scope_delimiter": " "
|
882
|
+
},
|
883
|
+
"snowflake": {
|
884
|
+
"authorize_url": "https://[subdomain].snowflakecomputing.com/oauth/authorize",
|
885
|
+
"access_url": "https://[subdomain].snowflakecomputing.com/oauth/token-request",
|
886
|
+
"oauth": 2,
|
887
|
+
"scope_delimiter": " "
|
888
|
+
},
|
889
|
+
"socialpilot": {
|
890
|
+
"authorize_url": "https://panel.socialpilot.co/oauth",
|
891
|
+
"access_url": "https://panel.socialpilot.co/oauth/accesstoken",
|
892
|
+
"oauth": 2
|
893
|
+
},
|
894
|
+
"socrata": {
|
895
|
+
"authorize_url": "https://[subdomain]/oauth/authorize",
|
896
|
+
"access_url": "https://[subdomain]/oauth/access_token",
|
897
|
+
"oauth": 2
|
898
|
+
},
|
899
|
+
"soundcloud": {
|
900
|
+
"authorize_url": "https://soundcloud.com/connect",
|
901
|
+
"access_url": "https://api.soundcloud.com/oauth2/token",
|
902
|
+
"oauth": 2
|
903
|
+
},
|
904
|
+
"spotify": {
|
905
|
+
"authorize_url": "https://accounts.spotify.com/authorize",
|
906
|
+
"access_url": "https://accounts.spotify.com/api/token",
|
907
|
+
"oauth": 2,
|
908
|
+
"scope_delimiter": " "
|
909
|
+
},
|
910
|
+
"square": {
|
911
|
+
"authorize_url": "https://connect.squareup.com/oauth2/authorize",
|
912
|
+
"access_url": "https://connect.squareup.com/oauth2/token",
|
913
|
+
"oauth": 2,
|
914
|
+
"scope_delimiter": " "
|
915
|
+
},
|
916
|
+
"stackexchange": {
|
917
|
+
"authorize_url": "https://stackexchange.com/oauth",
|
918
|
+
"access_url": "https://stackexchange.com/oauth/access_token",
|
919
|
+
"oauth": 2
|
920
|
+
},
|
921
|
+
"stocktwits": {
|
922
|
+
"authorize_url": "https://api.stocktwits.com/api/2/oauth/authorize",
|
923
|
+
"access_url": "https://api.stocktwits.com/api/2/oauth/token",
|
924
|
+
"oauth": 2
|
925
|
+
},
|
926
|
+
"stormz": {
|
927
|
+
"authorize_url": "https://stormz.me/oauth/authorize",
|
928
|
+
"access_url": "https://stormz.me/oauth/token",
|
929
|
+
"oauth": 2,
|
930
|
+
"scope_delimiter": " "
|
931
|
+
},
|
932
|
+
"storyblok": {
|
933
|
+
"authorize_url": "https://app.storyblok.com/oauth/authorize",
|
934
|
+
"access_url": "https://app.storyblok.com/oauth/token",
|
935
|
+
"oauth": 2,
|
936
|
+
"scope_delimiter": " "
|
937
|
+
},
|
938
|
+
"strava": {
|
939
|
+
"authorize_url": "https://www.strava.com/oauth/authorize",
|
940
|
+
"access_url": "https://www.strava.com/oauth/token",
|
941
|
+
"oauth": 2
|
942
|
+
},
|
943
|
+
"stripe": {
|
944
|
+
"authorize_url": "https://connect.stripe.com/oauth/authorize",
|
945
|
+
"access_url": "https://connect.stripe.com/oauth/token",
|
946
|
+
"oauth": 2
|
947
|
+
},
|
948
|
+
"surveymonkey": {
|
949
|
+
"authorize_url": "https://api.surveymonkey.com/oauth/authorize",
|
950
|
+
"access_url": "https://api.surveymonkey.net/oauth/token",
|
951
|
+
"oauth": 2
|
952
|
+
},
|
953
|
+
"surveysparrow": {
|
954
|
+
"authorize_url": "https://app.surveysparrow.com/o/oauth/auth",
|
955
|
+
"access_url": "https://app.surveysparrow.com/o/oauth/token",
|
956
|
+
"oauth": 2
|
957
|
+
},
|
958
|
+
"thingiverse": {
|
959
|
+
"authorize_url": "https://www.thingiverse.com/login/oauth/authorize",
|
960
|
+
"access_url": "https://www.thingiverse.com/login/oauth/access_token",
|
961
|
+
"oauth": 2
|
962
|
+
},
|
963
|
+
"ticketbud": {
|
964
|
+
"authorize_url": "https://api.ticketbud.com/oauth/authorize",
|
965
|
+
"access_url": "https://api.ticketbud.com/oauth/token",
|
966
|
+
"oauth": 2
|
967
|
+
},
|
968
|
+
"tiktok": {
|
969
|
+
"authorize_url": "https://open-api.tiktok.com/platform/oauth/connect/",
|
970
|
+
"access_url": "https://open-api.tiktok.com/oauth/access_token/",
|
971
|
+
"oauth": 2
|
972
|
+
},
|
973
|
+
"timelyapp": {
|
974
|
+
"authorize_url": "https://api.timelyapp.com/1.1/oauth/authorize",
|
975
|
+
"access_url": "https://api.timelyapp.com/1.1/oauth/token",
|
976
|
+
"oauth": 2
|
977
|
+
},
|
978
|
+
"todoist": {
|
979
|
+
"authorize_url": "https://todoist.com/oauth/authorize",
|
980
|
+
"access_url": "https://todoist.com/oauth/access_token",
|
981
|
+
"oauth": 2
|
982
|
+
},
|
983
|
+
"trakt": {
|
984
|
+
"authorize_url": "https://api-v2launch.trakt.tv/oauth/authorize",
|
985
|
+
"access_url": "https://api-v2launch.trakt.tv/oauth/token",
|
986
|
+
"oauth": 2
|
987
|
+
},
|
988
|
+
"traxo": {
|
989
|
+
"authorize_url": "https://www.traxo.com/oauth/authenticate",
|
990
|
+
"access_url": "https://www.traxo.com/oauth/token",
|
991
|
+
"oauth": 2
|
992
|
+
},
|
993
|
+
"trello": {
|
994
|
+
"request_url": "https://trello.com/1/OAuthGetRequestToken",
|
995
|
+
"authorize_url": "https://trello.com/1/OAuthAuthorizeToken",
|
996
|
+
"access_url": "https://trello.com/1/OAuthGetAccessToken",
|
997
|
+
"oauth": 1
|
998
|
+
},
|
999
|
+
"tripit": {
|
1000
|
+
"request_url": "https://api.tripit.com/oauth/request_token",
|
1001
|
+
"authorize_url": "https://www.tripit.com/oauth/authorize",
|
1002
|
+
"access_url": "https://api.tripit.com/oauth/access_token",
|
1003
|
+
"oauth": 1
|
1004
|
+
},
|
1005
|
+
"trustpilot": {
|
1006
|
+
"authorize_url": "https://authenticate.trustpilot.com",
|
1007
|
+
"access_url": "https://api.trustpilot.com/v1/oauth/oauth-business-users-for-applications/accesstoken",
|
1008
|
+
"oauth": 2
|
1009
|
+
},
|
1010
|
+
"tumblr": {
|
1011
|
+
"request_url": "https://www.tumblr.com/oauth/request_token",
|
1012
|
+
"authorize_url": "https://www.tumblr.com/oauth/authorize",
|
1013
|
+
"access_url": "https://www.tumblr.com/oauth/access_token",
|
1014
|
+
"oauth": 1
|
1015
|
+
},
|
1016
|
+
"twitch": {
|
1017
|
+
"authorize_url": "https://id.twitch.tv/oauth2/authorize",
|
1018
|
+
"access_url": "https://id.twitch.tv/oauth2/token",
|
1019
|
+
"oauth": 2,
|
1020
|
+
"scope_delimiter": " "
|
1021
|
+
},
|
1022
|
+
"twitter": {
|
1023
|
+
"request_url": "https://api.twitter.com/oauth/request_token",
|
1024
|
+
"authorize_url": "https://api.twitter.com/oauth/authenticate",
|
1025
|
+
"access_url": "https://api.twitter.com/oauth/access_token",
|
1026
|
+
"oauth": 1
|
1027
|
+
},
|
1028
|
+
"twitter2": {
|
1029
|
+
"authorize_url": "https://twitter.com/i/oauth2/authorize",
|
1030
|
+
"access_url": "https://api.twitter.com/2/oauth2/token",
|
1031
|
+
"oauth": 2,
|
1032
|
+
"scope_delimiter": " "
|
1033
|
+
},
|
1034
|
+
"typeform": {
|
1035
|
+
"authorize_url": "https://api.typeform.com/oauth/authorize",
|
1036
|
+
"access_url": "https://api.typeform.com/oauth/token",
|
1037
|
+
"oauth": 2,
|
1038
|
+
"scope_delimiter": " "
|
1039
|
+
},
|
1040
|
+
"uber": {
|
1041
|
+
"authorize_url": "https://login.uber.com/oauth/authorize",
|
1042
|
+
"access_url": "https://login.uber.com/oauth/token",
|
1043
|
+
"oauth": 2
|
1044
|
+
},
|
1045
|
+
"unbounce": {
|
1046
|
+
"authorize_url": "https://api.unbounce.com/oauth/authorize",
|
1047
|
+
"access_url": "https://api.unbounce.com/oauth/token",
|
1048
|
+
"oauth": 2
|
1049
|
+
},
|
1050
|
+
"underarmour": {
|
1051
|
+
"authorize_url": "https://www.mapmyfitness.com/v7.1/oauth2/uacf/authorize",
|
1052
|
+
"access_url": "https://api.mapmyfitness.com/v7.1/oauth2/access_token",
|
1053
|
+
"oauth": 2
|
1054
|
+
},
|
1055
|
+
"unsplash": {
|
1056
|
+
"authorize_url": "https://unsplash.com/oauth/authorize",
|
1057
|
+
"access_url": "https://unsplash.com/oauth/token",
|
1058
|
+
"oauth": 2,
|
1059
|
+
"scope_delimiter": "+"
|
1060
|
+
},
|
1061
|
+
"untappd": {
|
1062
|
+
"authorize_url": "https://untappd.com/oauth/authenticate",
|
1063
|
+
"access_url": "https://untappd.com/oauth/authorize",
|
1064
|
+
"oauth": 2
|
1065
|
+
},
|
1066
|
+
"upwork": {
|
1067
|
+
"request_url": "https://www.upwork.com/api/auth/v1/oauth/token/request",
|
1068
|
+
"authorize_url": "https://www.upwork.com/services/api/auth",
|
1069
|
+
"access_url": "https://www.upwork.com/api/auth/v1/oauth/token/access",
|
1070
|
+
"oauth": 1
|
1071
|
+
},
|
1072
|
+
"uservoice": {
|
1073
|
+
"request_url": "https://outofindex.uservoice.com/oauth/request_token",
|
1074
|
+
"authorize_url": "https://outofindex.uservoice.com/oauth/authorize",
|
1075
|
+
"access_url": "https://outofindex.uservoice.com/oauth/access_token",
|
1076
|
+
"oauth": 1
|
1077
|
+
},
|
1078
|
+
"vend": {
|
1079
|
+
"authorize_url": "https://secure.vendhq.com/connect",
|
1080
|
+
"access_url": "https://[subdomain].vendhq.com/api/1.0/token",
|
1081
|
+
"oauth": 2
|
1082
|
+
},
|
1083
|
+
"venmo": {
|
1084
|
+
"authorize_url": "https://api.venmo.com/v1/oauth/authorize",
|
1085
|
+
"access_url": "https://api.venmo.com/v1/oauth/access_token",
|
1086
|
+
"oauth": 2,
|
1087
|
+
"scope_delimiter": " "
|
1088
|
+
},
|
1089
|
+
"vercel": {
|
1090
|
+
"authorize_url": "https://vercel.com/oauth/authorize",
|
1091
|
+
"access_url": "https://api.vercel.com/v2/oauth/access_token",
|
1092
|
+
"oauth": 2
|
1093
|
+
},
|
1094
|
+
"verticalresponse": {
|
1095
|
+
"authorize_url": "https://vrapi.verticalresponse.com/api/v1/oauth/authorize",
|
1096
|
+
"access_url": "https://vrapi.verticalresponse.com/api/v1/oauth/access_token",
|
1097
|
+
"oauth": 2
|
1098
|
+
},
|
1099
|
+
"viadeo": {
|
1100
|
+
"authorize_url": "https://partners.viadeo.com/oauth/authorize",
|
1101
|
+
"access_url": "https://partners.viadeo.com/oauth/token",
|
1102
|
+
"oauth": 2
|
1103
|
+
},
|
1104
|
+
"vimeo": {
|
1105
|
+
"authorize_url": "https://api.vimeo.com/oauth/authorize",
|
1106
|
+
"access_url": "https://api.vimeo.com/oauth/access_token",
|
1107
|
+
"oauth": 2,
|
1108
|
+
"scope_delimiter": " "
|
1109
|
+
},
|
1110
|
+
"visualstudio": {
|
1111
|
+
"authorize_url": "https://app.vssps.visualstudio.com/oauth2/authorize",
|
1112
|
+
"access_url": "https://app.vssps.visualstudio.com/oauth2/token",
|
1113
|
+
"oauth": 2,
|
1114
|
+
"scope_delimiter": " "
|
1115
|
+
},
|
1116
|
+
"vk": {
|
1117
|
+
"authorize_url": "https://oauth.vk.com/authorize",
|
1118
|
+
"access_url": "https://oauth.vk.com/access_token",
|
1119
|
+
"oauth": 2
|
1120
|
+
},
|
1121
|
+
"wechat": {
|
1122
|
+
"authorize_url": "https://open.weixin.qq.com/connect/oauth2/authorize",
|
1123
|
+
"access_url": "https://api.weixin.qq.com/sns/oauth2/access_token",
|
1124
|
+
"oauth": 2
|
1125
|
+
},
|
1126
|
+
"weekdone": {
|
1127
|
+
"authorize_url": "https://weekdone.com/oauth_authorize",
|
1128
|
+
"access_url": "https://weekdone.com/oauth_token",
|
1129
|
+
"oauth": 2
|
1130
|
+
},
|
1131
|
+
"weibo": {
|
1132
|
+
"authorize_url": "https://api.weibo.com/oauth2/authorize",
|
1133
|
+
"access_url": "https://api.weibo.com/oauth2/access_token",
|
1134
|
+
"oauth": 2
|
1135
|
+
},
|
1136
|
+
"withings": {
|
1137
|
+
"authorize_url": "https://account.withings.com/oauth2_user/authorize2",
|
1138
|
+
"access_url": "https://wbsapi.withings.net/v2/oauth2",
|
1139
|
+
"oauth": 2
|
1140
|
+
},
|
1141
|
+
"wordpress": {
|
1142
|
+
"authorize_url": "https://public-api.wordpress.com/oauth2/authorize",
|
1143
|
+
"access_url": "https://public-api.wordpress.com/oauth2/token",
|
1144
|
+
"oauth": 2
|
1145
|
+
},
|
1146
|
+
"workos": {
|
1147
|
+
"authorize_url": "https://api.workos.com/sso/authorize",
|
1148
|
+
"access_url": "https://api.workos.com/sso/token",
|
1149
|
+
"oauth": 2
|
1150
|
+
},
|
1151
|
+
"wrike": {
|
1152
|
+
"authorize_url": "https://www.wrike.com/oauth2/authorize",
|
1153
|
+
"access_url": "https://www.wrike.com/oauth2/token",
|
1154
|
+
"oauth": 2
|
1155
|
+
},
|
1156
|
+
"xero": {
|
1157
|
+
"request_url": "https://api.xero.com/oauth/RequestToken",
|
1158
|
+
"authorize_url": "https://api.xero.com/oauth/Authorize",
|
1159
|
+
"access_url": "https://api.xero.com/oauth/AccessToken",
|
1160
|
+
"oauth": 1
|
1161
|
+
},
|
1162
|
+
"xing": {
|
1163
|
+
"request_url": "https://api.xing.com/v1/request_token",
|
1164
|
+
"authorize_url": "https://api.xing.com/v1/authorize",
|
1165
|
+
"access_url": "https://api.xing.com/v1/access_token",
|
1166
|
+
"oauth": 1
|
1167
|
+
},
|
1168
|
+
"yahoo": {
|
1169
|
+
"authorize_url": "https://api.login.yahoo.com/oauth2/request_auth",
|
1170
|
+
"access_url": "https://api.login.yahoo.com/oauth2/get_token",
|
1171
|
+
"oauth": 2
|
1172
|
+
},
|
1173
|
+
"yammer": {
|
1174
|
+
"authorize_url": "https://www.yammer.com/dialog/oauth",
|
1175
|
+
"access_url": "https://www.yammer.com/oauth2/access_token.json",
|
1176
|
+
"oauth": 2
|
1177
|
+
},
|
1178
|
+
"yandex": {
|
1179
|
+
"authorize_url": "https://oauth.yandex.com/authorize",
|
1180
|
+
"access_url": "https://oauth.yandex.com/token",
|
1181
|
+
"oauth": 2
|
1182
|
+
},
|
1183
|
+
"zendesk": {
|
1184
|
+
"authorize_url": "https://[subdomain].zendesk.com/oauth/authorizations/new",
|
1185
|
+
"access_url": "https://[subdomain].zendesk.com/oauth/tokens",
|
1186
|
+
"oauth": 2,
|
1187
|
+
"scope_delimiter": " "
|
1188
|
+
},
|
1189
|
+
"zoom": {
|
1190
|
+
"authorize_url": "https://zoom.us/oauth/authorize",
|
1191
|
+
"access_url": "https://zoom.us/oauth/token",
|
1192
|
+
"oauth": 2,
|
1193
|
+
"scope_delimiter": " "
|
1194
|
+
}
|
1195
|
+
}
|