Use set_auth_providers to define the list of identity providers provided by the Identity Cloud server to sign-in enabled pages. This is the same list that is managed by the dashboard.
This call modifies the list of providers presented to the user.
Accepted Content-types
application/x-www-form-urlencoded
multipart/form-data
This endpoint includes the following methods:
POST
POST
Authentication
This endpoint uses your social login API key for authentication. This key can be found on the Settings page of the Social Login Dashboard.
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 assigns three social login providers (Amazon, Facebook, and Twitter) for use with the social login application 1234567891234567891234567891234567891234.
Social Login API key. This key can be found on the Social Login Dashboard.
device_type
string
Without a parameter value, set_auth_providers affects the provider list for the web version of the Social Login UI.
Allowed parameter values are:
web (changes the providers presented to normal web traffic)
iphone (changes the providers presented to web traffic identified as originating from an iPhone)
android (changes the providers presented to web traffic identified as originating from an android based mobile device)
providers
string
Yes
A comma-separated string of provider specifiers. See Identity Providers.
Running this Command in Postman
To run this code sample in Postman:
Click the Copy to Clipboard button located directly beneath the code sample
In Postman, click Import to display the Import dialog box.
In the Import dialog box, click Paste Raw Text, and then paste in the copied code. The Import dialog box should look similar to this:
Click Import, and the Curl command will be converted to a format that can be run from within Postman. All you need to do now is configure the command to work with your Janrain implementation.
How to Create an Authentication String
To create an authentication string, combine your API client ID, a colon (:), and your client secret into a single value. For example, if your client ID is abcdefg and your client secret is hijklmnop, that value would look like this:
abcdefg:hijklmnop
Next, take the string and base64 encode it. For example, on a Mac, you can base encode the string using this command:
echo -n "abcdefg:hijklmnop" | base64
If you’re running Microsoft Windows, you can encode the string by using a Windows PowerShell command similar to this:
The resulting value (e.g., YWJjZGVmZzpoaWprbG1ub3A=) should be used in your authentication header.
If you are making API calls using Postman, select Basic Auth as your identification type, then use the client ID as the username and the client secret as the password.
Before you actually try your authentication string, make sure that your API client has the all the permissions (for example, the right to read user profile information) needed to complete the API call.