Appends domains to the current allow list for an application. If configured, only the domains included on the allow list are allowed to communicate with your social login application.
This endpoint includes the following methods:
POST
POST
Accepted Content-types
application/x-www-form-urlencoded
multipart/form-data
Example Request
This command adds three domains (localhost, somewhere.com, and *.examples.com) to the domains allow list for the social login application 1234567891234567891234567891234567891234. When configured, only those domains listed on the allow list are allowed to communicate with your social login application. Among other things, that means you can only login or register from domains on the list.
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:
Query Parameters
Parameter
Type
Required
Description
apiKey
string
Yes
Social Login API key. This key can be found on the Social Login Dashboard.
domains
string
Yes
Comma-separated list of domains that will be used as the website allow list.
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.