Get social login application settings

Returns the following application properties:

  • privacyPolicy. URL of your website's privacy policy.
  • favicon. Publicly accessible URL of your favicon. Favicons are icons that appear on web browser tabs, in a browser's address bar, and next to browser bookmarks.
  • domainRedirect. URL Identity Cloud redirects users to after a social login.
  • postToTokenUrl. This member is deprecated.
  • oneTimeUseTokens. If true, you can use a token just once before that token expires. If false, you can use the same token in multiple operations.
  • googleProfileUrl. This member is deprecated.

Accepted content types

  • application/x-www-form-urlencoded
  • multipart/form-data

Authentication

This operation uses your social login API key for authentication. This key can be found on the Settings page of the Social Login Dashboard. See Get started for more information.

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 (Engage Dashboard) on the Settings page.

Example request

This command returns social login application settings for the application 1234567891234567891234567891234567891234.

curl -X POST \
  --data-urlencode apiKey=1234567891234567891234567891234567891234\
  https://janrain-docs.rpxnow.com/api/v2/get_app_settings

Example response

If your API call succeeds you'll get back the settings for your social login application:

{
  "stat": "ok",
  "privacyPolicy": "https://education-center.akamai.com/privacy",
  "favicon": null,
  "domainRedirect": "https://education-center.akamai.com/start-here",
  "postToTokenUrl": null,
  "oneTimeUseTokens": true,
  "googleProfileUrl": null
}

Parameters

Parameters can be configured as x-www-form-urlencoded or as multipart/form-data body parameters.

apiKeystringSocial login secret for authenticating the operation. To verify your API key, log in to Console and, on the Manage Application page, check the value of the rpx_key setting. This value also appears on the Settings page in the Social Login dashboard.