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,644 @@
|
|
|
1
|
+
{
|
|
2
|
+
"23andme": {
|
|
3
|
+
"profile_url": "https://api.23andme.com/3/account/"
|
|
4
|
+
},
|
|
5
|
+
"500px": {
|
|
6
|
+
"profile_url": "https://api.500px.com/v1/users"
|
|
7
|
+
},
|
|
8
|
+
"acton": {
|
|
9
|
+
"profile_url": "https://restapi.actonsoftware.com/api/1/account"
|
|
10
|
+
},
|
|
11
|
+
"acuityscheduling": {
|
|
12
|
+
"profile_url": "https://acuityscheduling.com/api/v1/me"
|
|
13
|
+
},
|
|
14
|
+
"adobe": {
|
|
15
|
+
"profile_url": "https://ims-na1.adobelogin.com/ims/userinfo/v2"
|
|
16
|
+
},
|
|
17
|
+
"aha": {
|
|
18
|
+
"profile_url": "https://[subdomain].aha.io/api/v1/me"
|
|
19
|
+
},
|
|
20
|
+
"alchemer": {
|
|
21
|
+
"profile_url": "https://api.alchemer.com/v4/accountuser"
|
|
22
|
+
},
|
|
23
|
+
"amazon": {
|
|
24
|
+
"profile_url": "https://api.amazon.com/user/profile"
|
|
25
|
+
},
|
|
26
|
+
"angellist": {
|
|
27
|
+
"profile_url": "https://api.angel.co/1/me"
|
|
28
|
+
},
|
|
29
|
+
"apple": {
|
|
30
|
+
"profile_url": ""
|
|
31
|
+
},
|
|
32
|
+
"arcgis": {
|
|
33
|
+
"profile_url": "https://www.arcgis.com/sharing/rest/community/self"
|
|
34
|
+
},
|
|
35
|
+
"asana": {
|
|
36
|
+
"profile_url": "https://app.asana.com/api/1.0/users/me"
|
|
37
|
+
},
|
|
38
|
+
"assembla": {
|
|
39
|
+
"profile_url": "https://api.assembla.com/v1/user.json"
|
|
40
|
+
},
|
|
41
|
+
"atlassian": {
|
|
42
|
+
"profile_url": "https://api.atlassian.com/me"
|
|
43
|
+
},
|
|
44
|
+
"auth0": {
|
|
45
|
+
"profile_url": "https://[subdomain].auth0.com/userinfo"
|
|
46
|
+
},
|
|
47
|
+
"authentik": {
|
|
48
|
+
"profile_url": "https://[subdomain]/application/o/userinfo/"
|
|
49
|
+
},
|
|
50
|
+
"authentiq": {
|
|
51
|
+
"profile_url": "https://connect.authentiq.io/userinfo"
|
|
52
|
+
},
|
|
53
|
+
"authing": {
|
|
54
|
+
"profile_url": "https://[subdomain].authing.cn/oidc/me"
|
|
55
|
+
},
|
|
56
|
+
"autodesk": {
|
|
57
|
+
"profile_url": "https://developer.api.autodesk.com/userprofile/v1/users/@me"
|
|
58
|
+
},
|
|
59
|
+
"aweber": {
|
|
60
|
+
"profile_url": "https://api.aweber.com/1.0/accounts/me"
|
|
61
|
+
},
|
|
62
|
+
"axosoft": {
|
|
63
|
+
"profile_url": "https://[subdomain].axosoft.com/api/v5/me"
|
|
64
|
+
},
|
|
65
|
+
"baidu": {
|
|
66
|
+
"profile_url": "https://openapi.baidu.com/rest/2.0/passport/users/getLoggedInUser"
|
|
67
|
+
},
|
|
68
|
+
"basecamp": {
|
|
69
|
+
"profile_url": "https://launchpad.37signals.com/authorization.json"
|
|
70
|
+
},
|
|
71
|
+
"battlenet": {
|
|
72
|
+
"profile_url": "https://[subdomain].battle.net/oauth/userinfo"
|
|
73
|
+
},
|
|
74
|
+
"beatport": {
|
|
75
|
+
"profile_url": "https://oauth-api.beatport.com/identity/1/person"
|
|
76
|
+
},
|
|
77
|
+
"bitbucket": {
|
|
78
|
+
"profile_url": "https://api.bitbucket.org/2.0/user"
|
|
79
|
+
},
|
|
80
|
+
"bitly": {
|
|
81
|
+
"profile_url": "https://api-ssl.bitly.com/v4/user"
|
|
82
|
+
},
|
|
83
|
+
"box": {
|
|
84
|
+
"profile_url": "https://api.box.com/2.0/users/me"
|
|
85
|
+
},
|
|
86
|
+
"buffer": {
|
|
87
|
+
"profile_url": "https://api.bufferapp.com/1/user.json"
|
|
88
|
+
},
|
|
89
|
+
"campaignmonitor": {
|
|
90
|
+
"profile_url": "https://api.createsend.com/api/v3.1/clients.json"
|
|
91
|
+
},
|
|
92
|
+
"cas": {
|
|
93
|
+
"profile_url": "https://[subdomain]/oidc/profile"
|
|
94
|
+
},
|
|
95
|
+
"cheddar": {
|
|
96
|
+
"profile_url": "https://api.cheddarapp.com/v1/me"
|
|
97
|
+
},
|
|
98
|
+
"clio": {
|
|
99
|
+
"profile_url": "https://app.clio.com/api/v4/users/who_am_i.json"
|
|
100
|
+
},
|
|
101
|
+
"cognito": {
|
|
102
|
+
"profile_url": "https://[subdomain]/oauth2/userInfo"
|
|
103
|
+
},
|
|
104
|
+
"coinbase": {
|
|
105
|
+
"profile_url": "https://api.coinbase.com/v2/user"
|
|
106
|
+
},
|
|
107
|
+
"concur": {
|
|
108
|
+
"profile_url": "https://[subdomain].api.concursolutions.com/api/user/v1.0/user"
|
|
109
|
+
},
|
|
110
|
+
"constantcontact": {
|
|
111
|
+
"profile_url": "https://api.constantcontact.com/v2/account/info"
|
|
112
|
+
},
|
|
113
|
+
"coursera": {
|
|
114
|
+
"profile_url": "https://api.coursera.org/api/externalBasicProfiles.v1"
|
|
115
|
+
},
|
|
116
|
+
"crossid": {
|
|
117
|
+
"profile_url": "https://[subdomain].crossid.io/oauth2/userinfo"
|
|
118
|
+
},
|
|
119
|
+
"dailymotion": {
|
|
120
|
+
"profile_url": "https://api.dailymotion.com/user/me"
|
|
121
|
+
},
|
|
122
|
+
"deezer": {
|
|
123
|
+
"profile_url": "http://api.deezer.com/user/me"
|
|
124
|
+
},
|
|
125
|
+
"delivery": {
|
|
126
|
+
"profile_url": "https://api.delivery.com/customer/account"
|
|
127
|
+
},
|
|
128
|
+
"deputy": {
|
|
129
|
+
"profile_url": "https://[subdomain].deputy.com/api/v1/me"
|
|
130
|
+
},
|
|
131
|
+
"deviantart": {
|
|
132
|
+
"profile_url": "https://www.deviantart.com/api/v1/oauth2/user/whoami"
|
|
133
|
+
},
|
|
134
|
+
"digitalocean": {
|
|
135
|
+
"profile_url": "https://api.digitalocean.com/v2/account"
|
|
136
|
+
},
|
|
137
|
+
"discogs": {
|
|
138
|
+
"profile_url": "https://api.discogs.com/oauth/identity"
|
|
139
|
+
},
|
|
140
|
+
"discord": {
|
|
141
|
+
"profile_url": "https://discord.com/api/users/@me"
|
|
142
|
+
},
|
|
143
|
+
"disqus": {
|
|
144
|
+
"profile_url": "https://disqus.com/api/3.0/users/details.json"
|
|
145
|
+
},
|
|
146
|
+
"docusign": {
|
|
147
|
+
"profile_url": "https://account.docusign.com/oauth/userinfo"
|
|
148
|
+
},
|
|
149
|
+
"dribbble": {
|
|
150
|
+
"profile_url": "https://api.dribbble.com/v2/user"
|
|
151
|
+
},
|
|
152
|
+
"dropbox": {
|
|
153
|
+
"profile_url": "https://api.dropboxapi.com/2/users/get_current_account"
|
|
154
|
+
},
|
|
155
|
+
"ebay": {
|
|
156
|
+
"profile_url": ""
|
|
157
|
+
},
|
|
158
|
+
"echosign": {
|
|
159
|
+
"profile_url": "https://api.echosign.com/api/rest/v6/users"
|
|
160
|
+
},
|
|
161
|
+
"ecwid": {
|
|
162
|
+
"profile_url": ""
|
|
163
|
+
},
|
|
164
|
+
"edmodo": {
|
|
165
|
+
"profile_url": "https://api.edmodo.com/users/me"
|
|
166
|
+
},
|
|
167
|
+
"egnyte": {
|
|
168
|
+
"profile_url": "https://[subdomain].egnyte.com/puboauth/v1/userinfo"
|
|
169
|
+
},
|
|
170
|
+
"etsy": {
|
|
171
|
+
"profile_url": "https://openapi.etsy.com/v2/users/__SELF__"
|
|
172
|
+
},
|
|
173
|
+
"eventbrite": {
|
|
174
|
+
"profile_url": "https://www.eventbriteapi.com/v3/users/me/"
|
|
175
|
+
},
|
|
176
|
+
"evernote": {
|
|
177
|
+
"profile_url": ""
|
|
178
|
+
},
|
|
179
|
+
"eyeem": {
|
|
180
|
+
"profile_url": "https://api.eyeem.com/v2/users/me"
|
|
181
|
+
},
|
|
182
|
+
"facebook": {
|
|
183
|
+
"profile_url": "https://graph.facebook.com/me"
|
|
184
|
+
},
|
|
185
|
+
"familysearch": {
|
|
186
|
+
"profile_url": "https://api.familysearch.org/platform/users/current"
|
|
187
|
+
},
|
|
188
|
+
"feedly": {
|
|
189
|
+
"profile_url": "https://cloud.feedly.com/v3/profile"
|
|
190
|
+
},
|
|
191
|
+
"figma": {
|
|
192
|
+
"profile_url": "https://api.figma.com/v1/me"
|
|
193
|
+
},
|
|
194
|
+
"fitbit": {
|
|
195
|
+
"profile_url": "https://api.fitbit.com/1/user/-/profile.json"
|
|
196
|
+
},
|
|
197
|
+
"flickr": {
|
|
198
|
+
"profile_url": "https://api.flickr.com/services/rest/"
|
|
199
|
+
},
|
|
200
|
+
"formstack": {
|
|
201
|
+
"profile_url": ""
|
|
202
|
+
},
|
|
203
|
+
"foursquare": {
|
|
204
|
+
"profile_url": "https://api.foursquare.com/v2/users/self"
|
|
205
|
+
},
|
|
206
|
+
"freeagent": {
|
|
207
|
+
"profile_url": ""
|
|
208
|
+
},
|
|
209
|
+
"freelancer": {
|
|
210
|
+
"profile_url": ""
|
|
211
|
+
},
|
|
212
|
+
"freshbooks": {
|
|
213
|
+
"profile_url": "https://[subdomain].freshbooks.com/api/2.1/xml-in"
|
|
214
|
+
},
|
|
215
|
+
"fusionauth": {
|
|
216
|
+
"profile_url": "https://[subdomain]/oauth2/userinfo"
|
|
217
|
+
},
|
|
218
|
+
"geeklist": {
|
|
219
|
+
"profile_url": ""
|
|
220
|
+
},
|
|
221
|
+
"genius": {
|
|
222
|
+
"profile_url": ""
|
|
223
|
+
},
|
|
224
|
+
"getbase": {
|
|
225
|
+
"profile_url": ""
|
|
226
|
+
},
|
|
227
|
+
"getpocket": {
|
|
228
|
+
"profile_url": "https://getpocket.com/v3/users"
|
|
229
|
+
},
|
|
230
|
+
"gitbook": {
|
|
231
|
+
"profile_url": ""
|
|
232
|
+
},
|
|
233
|
+
"github": {
|
|
234
|
+
"profile_url": "https://api.github.com/user"
|
|
235
|
+
},
|
|
236
|
+
"gitlab": {
|
|
237
|
+
"profile_url": "https://gitlab.com/api/v3/user"
|
|
238
|
+
},
|
|
239
|
+
"gitter": {
|
|
240
|
+
"profile_url": "https://api.gitter.im/v1/user"
|
|
241
|
+
},
|
|
242
|
+
"goodreads": {
|
|
243
|
+
"profile_url": "https://www.goodreads.com/api/auth_user"
|
|
244
|
+
},
|
|
245
|
+
"google": {
|
|
246
|
+
"profile_url": "https://openidconnect.googleapis.com/v1/userinfo"
|
|
247
|
+
},
|
|
248
|
+
"groove": {
|
|
249
|
+
"profile_url": ""
|
|
250
|
+
},
|
|
251
|
+
"gumroad": {
|
|
252
|
+
"profile_url": ""
|
|
253
|
+
},
|
|
254
|
+
"harvest": {
|
|
255
|
+
"profile_url": "https://[subdomain].harvestapp.com/account/who_am_i"
|
|
256
|
+
},
|
|
257
|
+
"hellosign": {
|
|
258
|
+
"profile_url": ""
|
|
259
|
+
},
|
|
260
|
+
"heroku": {
|
|
261
|
+
"profile_url": "https://api.heroku.com/account"
|
|
262
|
+
},
|
|
263
|
+
"homeaway": {
|
|
264
|
+
"profile_url": ""
|
|
265
|
+
},
|
|
266
|
+
"hootsuite": {
|
|
267
|
+
"profile_url": ""
|
|
268
|
+
},
|
|
269
|
+
"huddle": {
|
|
270
|
+
"profile_url": ""
|
|
271
|
+
},
|
|
272
|
+
"ibm": {
|
|
273
|
+
"profile_url": "https://login.ibm.com/oidc/endpoint/default/userinfo"
|
|
274
|
+
},
|
|
275
|
+
"iconfinder": {
|
|
276
|
+
"profile_url": ""
|
|
277
|
+
},
|
|
278
|
+
"idme": {
|
|
279
|
+
"profile_url": ""
|
|
280
|
+
},
|
|
281
|
+
"idonethis": {
|
|
282
|
+
"profile_url": ""
|
|
283
|
+
},
|
|
284
|
+
"imgur": {
|
|
285
|
+
"profile_url": "https://api.imgur.com/3/account/me.json"
|
|
286
|
+
},
|
|
287
|
+
"infusionsoft": {
|
|
288
|
+
"profile_url": ""
|
|
289
|
+
},
|
|
290
|
+
"instagram": {
|
|
291
|
+
"profile_url": "https://graph.instagram.com/me"
|
|
292
|
+
},
|
|
293
|
+
"intuit": {
|
|
294
|
+
"profile_url": ""
|
|
295
|
+
},
|
|
296
|
+
"jamendo": {
|
|
297
|
+
"profile_url": ""
|
|
298
|
+
},
|
|
299
|
+
"jumplead": {
|
|
300
|
+
"profile_url": ""
|
|
301
|
+
},
|
|
302
|
+
"kakao": {
|
|
303
|
+
"profile_url": "https://kapi.kakao.com/v1/user/me"
|
|
304
|
+
},
|
|
305
|
+
"keycloak": {
|
|
306
|
+
"profile_url": "https://[subdomain]/protocol/openid-connect/userinfo"
|
|
307
|
+
},
|
|
308
|
+
"line": {
|
|
309
|
+
"profile_url": "https://api.line.me/v2/profile"
|
|
310
|
+
},
|
|
311
|
+
"linkedin": {
|
|
312
|
+
"profile_url": "https://api.linkedin.com/v2/me"
|
|
313
|
+
},
|
|
314
|
+
"live": {
|
|
315
|
+
"profile_url": "https://apis.live.net/v5.0/me"
|
|
316
|
+
},
|
|
317
|
+
"livechat": {
|
|
318
|
+
"profile_url": ""
|
|
319
|
+
},
|
|
320
|
+
"logingov": {
|
|
321
|
+
"profile_url": "https://idp.int.identitysandbox.gov/api/openid_connect/userinfo"
|
|
322
|
+
},
|
|
323
|
+
"lyft": {
|
|
324
|
+
"profile_url": ""
|
|
325
|
+
},
|
|
326
|
+
"mailchimp": {
|
|
327
|
+
"profile_url": "https://[subdomain].api.mailchimp.com/2.0/metadata.json"
|
|
328
|
+
},
|
|
329
|
+
"mailup": {
|
|
330
|
+
"profile_url": ""
|
|
331
|
+
},
|
|
332
|
+
"mailxpert": {
|
|
333
|
+
"profile_url": ""
|
|
334
|
+
},
|
|
335
|
+
"mapmyfitness": {
|
|
336
|
+
"profile_url": "https://oauth2-api.mapmyapi.com/v7.1/user/self"
|
|
337
|
+
},
|
|
338
|
+
"mastodon": {
|
|
339
|
+
"profile_url": ""
|
|
340
|
+
},
|
|
341
|
+
"medium": {
|
|
342
|
+
"profile_url": ""
|
|
343
|
+
},
|
|
344
|
+
"meetup": {
|
|
345
|
+
"profile_url": "https://api.meetup.com/2/members"
|
|
346
|
+
},
|
|
347
|
+
"mendeley": {
|
|
348
|
+
"profile_url": "https://api.mendeley.com/profiles/me"
|
|
349
|
+
},
|
|
350
|
+
"mention": {
|
|
351
|
+
"profile_url": ""
|
|
352
|
+
},
|
|
353
|
+
"microsoft": {
|
|
354
|
+
"profile_url": "https://graph.microsoft.com/oidc/userinfo"
|
|
355
|
+
},
|
|
356
|
+
"mixcloud": {
|
|
357
|
+
"profile_url": "https://api.mixcloud.com/me"
|
|
358
|
+
},
|
|
359
|
+
"moxtra": {
|
|
360
|
+
"profile_url": ""
|
|
361
|
+
},
|
|
362
|
+
"myob": {
|
|
363
|
+
"profile_url": ""
|
|
364
|
+
},
|
|
365
|
+
"naver": {
|
|
366
|
+
"profile_url": "https://openapi.naver.com/v1/nid/me"
|
|
367
|
+
},
|
|
368
|
+
"nest": {
|
|
369
|
+
"profile_url": ""
|
|
370
|
+
},
|
|
371
|
+
"netlify": {
|
|
372
|
+
"profile_url": "https://api.netlify.com/api/v1/user"
|
|
373
|
+
},
|
|
374
|
+
"nokotime": {
|
|
375
|
+
"profile_url": ""
|
|
376
|
+
},
|
|
377
|
+
"notion": {
|
|
378
|
+
"profile_url": ""
|
|
379
|
+
},
|
|
380
|
+
"nylas": {
|
|
381
|
+
"profile_url": ""
|
|
382
|
+
},
|
|
383
|
+
"okta": {
|
|
384
|
+
"profile_url": "https://[subdomain].okta.com/oauth2/v1/userinfo"
|
|
385
|
+
},
|
|
386
|
+
"onelogin": {
|
|
387
|
+
"profile_url": ""
|
|
388
|
+
},
|
|
389
|
+
"openstreetmap": {
|
|
390
|
+
"profile_url": "https://api.openstreetmap.org/api/0.6/user/details.json"
|
|
391
|
+
},
|
|
392
|
+
"openstreetmap2": {
|
|
393
|
+
"profile_url": "https://api.openstreetmap.org/api/0.6/user/details.json"
|
|
394
|
+
},
|
|
395
|
+
"optimizely": {
|
|
396
|
+
"profile_url": ""
|
|
397
|
+
},
|
|
398
|
+
"osu": {
|
|
399
|
+
"profile_url": "https://osu.ppy.sh/api/v2/me"
|
|
400
|
+
},
|
|
401
|
+
"patreon": {
|
|
402
|
+
"profile_url": ""
|
|
403
|
+
},
|
|
404
|
+
"paypal": {
|
|
405
|
+
"profile_url": ""
|
|
406
|
+
},
|
|
407
|
+
"phantauth": {
|
|
408
|
+
"profile_url": "https://phantauth.net/auth/userinfo"
|
|
409
|
+
},
|
|
410
|
+
"pinterest": {
|
|
411
|
+
"profile_url": ""
|
|
412
|
+
},
|
|
413
|
+
"plurk": {
|
|
414
|
+
"profile_url": "https://www.plurk.com/APP/Profile/getOwnProfile"
|
|
415
|
+
},
|
|
416
|
+
"podio": {
|
|
417
|
+
"profile_url": "https://api.podio.com/user"
|
|
418
|
+
},
|
|
419
|
+
"procore": {
|
|
420
|
+
"profile_url": "https://api.procore.com/rest/v1.0/me"
|
|
421
|
+
},
|
|
422
|
+
"producthunt": {
|
|
423
|
+
"profile_url": ""
|
|
424
|
+
},
|
|
425
|
+
"projectplace": {
|
|
426
|
+
"profile_url": ""
|
|
427
|
+
},
|
|
428
|
+
"projectplace2": {
|
|
429
|
+
"profile_url": ""
|
|
430
|
+
},
|
|
431
|
+
"pushbullet": {
|
|
432
|
+
"profile_url": ""
|
|
433
|
+
},
|
|
434
|
+
"qq": {
|
|
435
|
+
"profile_url": "https://graph.qq.com/oauth2.0/me"
|
|
436
|
+
},
|
|
437
|
+
"ravelry": {
|
|
438
|
+
"profile_url": ""
|
|
439
|
+
},
|
|
440
|
+
"redbooth": {
|
|
441
|
+
"profile_url": "https://redbooth.com/api/3/me"
|
|
442
|
+
},
|
|
443
|
+
"reddit": {
|
|
444
|
+
"profile_url": "https://oauth.reddit.com/api/v1/me"
|
|
445
|
+
},
|
|
446
|
+
"runkeeper": {
|
|
447
|
+
"profile_url": "https://api.runkeeper.com/user"
|
|
448
|
+
},
|
|
449
|
+
"salesforce": {
|
|
450
|
+
"profile_url": "https://login.salesforce.com/services/oauth2/userinfo"
|
|
451
|
+
},
|
|
452
|
+
"shoeboxed": {
|
|
453
|
+
"profile_url": "https://api.shoeboxed.com/v2/user"
|
|
454
|
+
},
|
|
455
|
+
"shopify": {
|
|
456
|
+
"profile_url": "https://[subdomain].myshopify.com/admin/shop.json"
|
|
457
|
+
},
|
|
458
|
+
"skyrock": {
|
|
459
|
+
"profile_url": "https://api.skyrock.com/v2/user/get.json"
|
|
460
|
+
},
|
|
461
|
+
"slack": {
|
|
462
|
+
"profile_url": "https://slack.com/api/auth.test"
|
|
463
|
+
},
|
|
464
|
+
"slice": {
|
|
465
|
+
"profile_url": "https://api.slice.com/api/v1/users/self"
|
|
466
|
+
},
|
|
467
|
+
"smartsheet": {
|
|
468
|
+
"profile_url": ""
|
|
469
|
+
},
|
|
470
|
+
"smugmug": {
|
|
471
|
+
"profile_url": ""
|
|
472
|
+
},
|
|
473
|
+
"snapchat": {
|
|
474
|
+
"profile_url": "https://kit.snapchat.com/v1/me"
|
|
475
|
+
},
|
|
476
|
+
"socialpilot": {
|
|
477
|
+
"profile_url": ""
|
|
478
|
+
},
|
|
479
|
+
"socrata": {
|
|
480
|
+
"profile_url": "https://[subdomain]/api/users/current.json"
|
|
481
|
+
},
|
|
482
|
+
"soundcloud": {
|
|
483
|
+
"profile_url": "https://api.soundcloud.com/me.json"
|
|
484
|
+
},
|
|
485
|
+
"spotify": {
|
|
486
|
+
"profile_url": "https://api.spotify.com/v1/me"
|
|
487
|
+
},
|
|
488
|
+
"square": {
|
|
489
|
+
"profile_url": "https://connect.squareup.com/v1/me"
|
|
490
|
+
},
|
|
491
|
+
"stackexchange": {
|
|
492
|
+
"profile_url": "https://api.stackexchange.com/2.2/me"
|
|
493
|
+
},
|
|
494
|
+
"stocktwits": {
|
|
495
|
+
"profile_url": "https://api.stocktwits.com/api/2/account/verify.json"
|
|
496
|
+
},
|
|
497
|
+
"stormz": {
|
|
498
|
+
"profile_url": "https://api.stormz.me/v1/user/me"
|
|
499
|
+
},
|
|
500
|
+
"storyblok": {
|
|
501
|
+
"profile_url": ""
|
|
502
|
+
},
|
|
503
|
+
"strava": {
|
|
504
|
+
"profile_url": "https://www.strava.com/api/v3/athlete"
|
|
505
|
+
},
|
|
506
|
+
"stripe": {
|
|
507
|
+
"profile_url": "https://api.stripe.com/v1/account"
|
|
508
|
+
},
|
|
509
|
+
"surveymonkey": {
|
|
510
|
+
"profile_url": "https://api.surveymonkey.net/v2/users/me"
|
|
511
|
+
},
|
|
512
|
+
"surveysparrow": {
|
|
513
|
+
"profile_url": ""
|
|
514
|
+
},
|
|
515
|
+
"thingiverse": {
|
|
516
|
+
"profile_url": "https://api.thingiverse.com/users/me"
|
|
517
|
+
},
|
|
518
|
+
"ticketbud": {
|
|
519
|
+
"profile_url": ""
|
|
520
|
+
},
|
|
521
|
+
"tiktok": {
|
|
522
|
+
"profile_url": "https://open-api.tiktok.com/user/info/"
|
|
523
|
+
},
|
|
524
|
+
"timelyapp": {
|
|
525
|
+
"profile_url": ""
|
|
526
|
+
},
|
|
527
|
+
"todoist": {
|
|
528
|
+
"profile_url": ""
|
|
529
|
+
},
|
|
530
|
+
"trakt": {
|
|
531
|
+
"profile_url": "https://api-v2launch.trakt.tv/users/me"
|
|
532
|
+
},
|
|
533
|
+
"traxo": {
|
|
534
|
+
"profile_url": "https://api.traxo.com/v2/me"
|
|
535
|
+
},
|
|
536
|
+
"trello": {
|
|
537
|
+
"profile_url": "https://api.trello.com/1/members/me"
|
|
538
|
+
},
|
|
539
|
+
"tripit": {
|
|
540
|
+
"profile_url": "https://api.tripit.com/v1/get/profile"
|
|
541
|
+
},
|
|
542
|
+
"tumblr": {
|
|
543
|
+
"profile_url": "http://api.tumblr.com/v2/user/info"
|
|
544
|
+
},
|
|
545
|
+
"twitch": {
|
|
546
|
+
"profile_url": "https://api.twitch.tv/helix/users"
|
|
547
|
+
},
|
|
548
|
+
"twitter": {
|
|
549
|
+
"profile_url": "https://api.twitter.com/1.1/users/show.json"
|
|
550
|
+
},
|
|
551
|
+
"twitter2": {
|
|
552
|
+
"profile_url": "https://api.twitter.com/2/users/me"
|
|
553
|
+
},
|
|
554
|
+
"typeform": {
|
|
555
|
+
"profile_url": ""
|
|
556
|
+
},
|
|
557
|
+
"uber": {
|
|
558
|
+
"profile_url": "https://[subdomain].uber.com/v1/me"
|
|
559
|
+
},
|
|
560
|
+
"unbounce": {
|
|
561
|
+
"profile_url": "https://api.unbounce.com/users/self"
|
|
562
|
+
},
|
|
563
|
+
"underarmour": {
|
|
564
|
+
"profile_url": "https://api.ua.com/v7.1/user/self"
|
|
565
|
+
},
|
|
566
|
+
"unsplash": {
|
|
567
|
+
"profile_url": ""
|
|
568
|
+
},
|
|
569
|
+
"untappd": {
|
|
570
|
+
"profile_url": ""
|
|
571
|
+
},
|
|
572
|
+
"upwork": {
|
|
573
|
+
"profile_url": "https://www.upwork.com/api/info.json"
|
|
574
|
+
},
|
|
575
|
+
"uservoice": {
|
|
576
|
+
"profile_url": "https://[subdomain].uservoice.com/api/v1/users/current.json"
|
|
577
|
+
},
|
|
578
|
+
"vend": {
|
|
579
|
+
"profile_url": "https://[subdomain].vendhq.com/api/users"
|
|
580
|
+
},
|
|
581
|
+
"venmo": {
|
|
582
|
+
"profile_url": ""
|
|
583
|
+
},
|
|
584
|
+
"vercel": {
|
|
585
|
+
"profile_url": "https://api.vercel.com/www/user"
|
|
586
|
+
},
|
|
587
|
+
"verticalresponse": {
|
|
588
|
+
"profile_url": ""
|
|
589
|
+
},
|
|
590
|
+
"viadeo": {
|
|
591
|
+
"profile_url": ""
|
|
592
|
+
},
|
|
593
|
+
"vimeo": {
|
|
594
|
+
"profile_url": "https://api.vimeo.com/me"
|
|
595
|
+
},
|
|
596
|
+
"visualstudio": {
|
|
597
|
+
"profile_url": "https://app.vssps.visualstudio.com/_apis/profile/profiles/me?api-version=6.0"
|
|
598
|
+
},
|
|
599
|
+
"vk": {
|
|
600
|
+
"profile_url": "https://api.vk.com/method/users.get"
|
|
601
|
+
},
|
|
602
|
+
"wechat": {
|
|
603
|
+
"profile_url": "https://api.weixin.qq.com/sns/userinfo"
|
|
604
|
+
},
|
|
605
|
+
"weekdone": {
|
|
606
|
+
"profile_url": ""
|
|
607
|
+
},
|
|
608
|
+
"weibo": {
|
|
609
|
+
"profile_url": "https://api.weibo.com/2/users/show.json"
|
|
610
|
+
},
|
|
611
|
+
"withings": {
|
|
612
|
+
"profile_url": "https://wbsapi.withings.net/v2/user"
|
|
613
|
+
},
|
|
614
|
+
"wordpress": {
|
|
615
|
+
"profile_url": "https://public-api.wordpress.com/rest/v1/me"
|
|
616
|
+
},
|
|
617
|
+
"workos": {
|
|
618
|
+
"profile_url": "https://api.workos.com/sso/profile"
|
|
619
|
+
},
|
|
620
|
+
"wrike": {
|
|
621
|
+
"profile_url": ""
|
|
622
|
+
},
|
|
623
|
+
"xero": {
|
|
624
|
+
"profile_url": ""
|
|
625
|
+
},
|
|
626
|
+
"xing": {
|
|
627
|
+
"profile_url": "https://api.xing.com/v1/users/me.json"
|
|
628
|
+
},
|
|
629
|
+
"yahoo": {
|
|
630
|
+
"profile_url": "https://api.login.yahoo.com/openid/v1/userinfo"
|
|
631
|
+
},
|
|
632
|
+
"yammer": {
|
|
633
|
+
"profile_url": "https://www.yammer.com/api/v1/users/current.json"
|
|
634
|
+
},
|
|
635
|
+
"yandex": {
|
|
636
|
+
"profile_url": "https://login.yandex.ru/info"
|
|
637
|
+
},
|
|
638
|
+
"zendesk": {
|
|
639
|
+
"profile_url": "https://[subdomain].zendesk.com/api/v2/users/me.json"
|
|
640
|
+
},
|
|
641
|
+
"zoom": {
|
|
642
|
+
"profile_url": "https://api.zoom.us/v2/users/me"
|
|
643
|
+
}
|
|
644
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
[
|
|
2
|
+
"request_url",
|
|
3
|
+
"authorize_url",
|
|
4
|
+
"access_url",
|
|
5
|
+
"oauth",
|
|
6
|
+
"scope_delimiter",
|
|
7
|
+
"token_endpoint_auth_method",
|
|
8
|
+
"token_endpoint_auth_signing_alg",
|
|
9
|
+
|
|
10
|
+
"origin",
|
|
11
|
+
"prefix",
|
|
12
|
+
"state",
|
|
13
|
+
"nonce",
|
|
14
|
+
"pkce",
|
|
15
|
+
"response",
|
|
16
|
+
"transport",
|
|
17
|
+
"callback",
|
|
18
|
+
"overrides",
|
|
19
|
+
"dynamic",
|
|
20
|
+
"public_key",
|
|
21
|
+
"private_key",
|
|
22
|
+
|
|
23
|
+
"protocol",
|
|
24
|
+
"host",
|
|
25
|
+
"path",
|
|
26
|
+
|
|
27
|
+
"key",
|
|
28
|
+
"secret",
|
|
29
|
+
"consumer_key",
|
|
30
|
+
"consumer_secret",
|
|
31
|
+
"client_id",
|
|
32
|
+
"client_secret",
|
|
33
|
+
"scope",
|
|
34
|
+
"custom_params",
|
|
35
|
+
"subdomain",
|
|
36
|
+
|
|
37
|
+
"name",
|
|
38
|
+
"redirect_uri",
|
|
39
|
+
"profile_url"
|
|
40
|
+
]
|