Endpoint URL: {socialLoginDomain} /api/v2/set_domain_patterns
Description
Use the set_domain_patterns call to replace the current allow list for an application.
Respects the API Client Allow List: No
Accepted Content-types
- application/x-www-form-urlencoded
- multipart/form-data
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 two domains (*.rpxnow.com and *.akamai.com) to the allow list for the social login application 1234567891234567891234567891234567891234. When configured, only those domains listed on the allow list are able to communicate with your social login application. Among other things, that means you can only login or register from domains on the list.
curl -X POST \ --data-urlencode apiKey=1234567891234567891234567891234567891234 \ --data-urlencode domains='*.rpxnow.com,*.akamai.com' \
https://janrain-docs.rpxnow.com/api/v2/set_domain_patterns
Running this command in Postman
Example Response
{
"stat": "ok"
}
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 serves as the website allow list. |