-
Notifications
You must be signed in to change notification settings - Fork 123
(Core API) providers
Thomas Muldowney edited this page Apr 11, 2011
·
1 revision
Retrieves an array of the services that provide the specified service types.
Types can be specifed as either primary/secondary or as just primary.
GET
- types: A comma separated list of the types to find providers for.
/providers?types=link,contact%2ftwitter
Find all of the providers of primary type link as well as providers of full type contact/twitter
application/json
- 200: A JSON array of the diay entries.
[
{
"title":"Chrome History",
"action":"Sync your browser history from Chrome",
"desc":"Collect and sync my browser history from Chrome.",
"run":"node client.js",
"provides":["link/chrome"],
"srcdir":"Connectors/ChromeHistory",
"is":"connector"
},
{
"title":"Twitter Account",
"action":"Connect to a Twitter account",
"desc":"Collect and sync my data from my Twitter account using the Twitter API and a Twitter 'app' that I create just for myself.",
"run":"node client.js",
"provides":["contact/twitter","status/twitter"],
"srcdir":"Connectors/Twitter",
"is":"connector"
},
{
"title":"Links",
"desc":"A collection of links from many places.",
"run":"node links.js",
"takes":["link/chrome"],
"provides":["link"],
"srcdir":"Collections/Links",
"is":"collection"
}
]
- 400: The types argument was not specified or is invalid.