Get your configured social login providers
Returns the sign-in and social login identity providers configured for an application. Configured providers are those providers ready for immediate use.
Authentication
This operation doesn't require authentication.
Accepted content types
- application/x-www-form-urlencoded
- multipart/form-data
Base URL
The base URL for this operation 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 dashboard on the Settings page.
Example request
This command returns information about the social login identity providers available for use with the application https://janrain-docs.rpxnow.com.
curl -X POST \
https://janrain-docs.rpxnow.com/api/v2/providers
Example response
If your API call succeeds rhe response includes your configured identity providers:
{
"stat": "ok",
"signin": [
"amazon",
"googleplus"
],
"social": [],
"shareWidget": {
"share": [
"email",
"linkedin"
],
"email": []
}
}
Response fields
The fields included in the PAI response are summarized in the following table:
Field | Type | Description |
---|---|---|
signin | dictionary | Configured sign-in provides for the application. |
social | dictionary | Configured social providers for the application. |
share | dictionary | Social sharing providers available an application.. Social sharing is only available to legacy Identity Cloud customers |
dictionary | Rmail providers available an application.. Email providers only available to legacy Identity Cloud customers |
Parameters
Parameters can be configured as x-www-form-urlencoded or as multipart/form-data body parameters.
Parameter | Typer | Required | Description |
---|---|---|---|
callback | ✗ | If present, data is returned in JSONP (JSON with Padding) format. If not present, data is returned by using JSON. You can supply a value to the callback parameter, but that value is ignored and the response wil use the JSONP format simply because callback is present. |
Updated over 1 year ago