-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
211 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"name": "AngelList", | ||
"desc": "AngelList is a US website for startups, angel investors, and job-seekers looking to work at startups.", | ||
"url": "https://api.angel.co/", | ||
"oauth2": { | ||
"authorize": { | ||
"url": "https://angel.co/api/oauth/authorize", | ||
"query": { | ||
"response_type": "code", | ||
"client_id": "{client_id}", | ||
"state": "{{state}}", | ||
"scope": "{scope}" | ||
}, | ||
"format": "url" | ||
}, | ||
"access_token": { | ||
"url": "https://angel.co/api/oauth/token", | ||
"query": { | ||
"client_id": "{client_id}", | ||
"client_secret": "{client_secret}", | ||
"grant_type": "authorization_code", | ||
"code": "{{code}}" | ||
}, | ||
"format": "json" | ||
}, | ||
"request": { | ||
"url": "https://api.angel.co/" | ||
}, | ||
"refresh": { | ||
"url": "https://angel.co/api/oauth/token", | ||
"method": "post", | ||
"query": { | ||
"client_id": "{client_id}", | ||
"client_secret": "{client_secret}", | ||
"grant_type": "refresh_token", | ||
"refresh_token": "{{refresh_token}}" | ||
} | ||
}, | ||
"parameters": { | ||
"client_id": "string", | ||
"client_secret": "string", | ||
"scope": { | ||
"values": { | ||
"comment": "gives your application permission to create and destroy likes and comments.", | ||
"email": "gives your application access to the user's email address.", | ||
"message": "gives your application access to the user's private messages, for reading and writing.", | ||
"talent": "gives your application access to the user's presence on AngelList Talent." | ||
}, | ||
"separator": " " | ||
} | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
var me = { | ||
fetch: [ | ||
|
||
function(fetched_elts) { | ||
return '/1/me'; | ||
} | ||
|
||
], | ||
params: {}, | ||
fields: { | ||
id: "=", | ||
email: "=", | ||
location: "country", | ||
name: "=", | ||
avatar: function(me) { | ||
return me.image; | ||
} | ||
} | ||
}; | ||
module.exports = me; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"settings": { | ||
"createApp": { | ||
"url": "https://angel.co/api/oauth/clients", | ||
"image": "config.png" | ||
}, | ||
"copyingKey": { | ||
"url": "https://angel.co/api/oauth/clients", | ||
"image": "keys.png" | ||
}, | ||
"install": { | ||
"href": { | ||
"provider": "https://angel.co/", | ||
"docs": "https://angel.co/api", | ||
"apps": "https://angel.co/api/oauth/clients" | ||
} | ||
}, | ||
"sample": { | ||
"method": "get", | ||
"url": "/1/me" | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
var me = { | ||
fetch: [ | ||
|
||
function(fetched_elts) { | ||
return '/users/me'; | ||
} | ||
|
||
], | ||
params: {}, | ||
fields: { | ||
id: function(me) { | ||
return me.data.id; | ||
}, | ||
location: function(me) { | ||
return me.data.locale; | ||
}, | ||
name: function(me) { | ||
return me.data.username; | ||
}, | ||
avatar: function(me) { | ||
return me.data.avatar_image.url; | ||
}, | ||
alias: function(me) { | ||
return me.data.username; | ||
} | ||
} | ||
}; | ||
module.exports = me; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"settings": { | ||
"createApp": { | ||
"url": "https://developers.app.net/docs/guides/create-an-app/", | ||
"image": "config.png" | ||
}, | ||
"copyingKey": { | ||
"url": "https://account.app.net/developer/apps/", | ||
"image": "keys.png" | ||
}, | ||
"install": { | ||
"href": { | ||
"provider": "https://app.net/", | ||
"docs": "https://developers.app.net/reference/resources/", | ||
"apps": "https://account.app.net/developer/apps/" | ||
} | ||
}, | ||
"sample": { | ||
"method": "get", | ||
"url": "/users/me" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.