Returns a list of configured sign-in or social providers configured for an application.
This endpoint includes the following methods:
- POST
POST
Authentication
This endpoint does not require authentication.
Accepted Content-types
- application/x-www-form-urlencoded
- multipart/form-data
Base URL
The base URL for this endpoint is your application domain followed by /api/v2; for example:
https://educationcenter.rpxnow.com/api/v2
You can find your application domain in the Social Login (Engage Dashboard) on the Settings page:
Example Request
This command returns information about the social login identity providers available for use with the application that uses the URL https://janrain-docs.rpxnow.com.
curl -X POST \
https://janrain-docs.rpxnow.com/api/v2/providers
Running this command in Postman
Example Response
{
"stat": "ok",
"signin": [
"aol",
"facebook",
"foursquare",
"google",
"linkedin",
"live_id",
"mixi",
"openid",
"orkut",
"paypal",
"salesforce",
"sinaweibo",
"twitter",
"yahoo"
],
"social": [],
"shareWidget": {
"share": [
"email",
"facebook",
"linkedin",
"myspace",
"twitter",
"yahoo"
],
"email": []
}
}
Responses
200 OK
Field | Type | Description |
---|---|---|
signin | dictionary | A list of configured sign-in provider names for the application. |
social | dictionary | A list of configured social provider names for the application. |
share | dictionary | A list of configured sharing providers. [Note: Sharing providers are no longer supported.] |
dictionary | A list of configured sharing direct share providers. [Note: Sharing providers are no longer supported.] | |
callback | dictionary | Specifies the return of a JSONP-formatted response. The format parameter will be ignored if callback is present. |