- Getting Started
- Setup On Your Website
- Server Side API
- Auth For Services
Server Side API
Authentication
How to authenticate your calls to the Just Sign In API
Find Your App Id
When making calls to the API, you will need to include your App Id. This is the identifier of the Website you have configured within the Just Sign In Dashboard, that is the context for your API call. If you haven't yet configured a Website in the Dashboard, you will need to do that first.
To find your App Id:
- Go to My Dashboard
- Navigate to the Websites tab
- Click on the API Access Keys link for the Website you want to use for your API call
- Your App Id will be displayed on the API Access Keys page
Create Your App Secret
Your App Secret allows access to retrieve and modify your users' data. You must keep your App Secret confidential and only use it to make API calls from your secure server environments.
To create your App Secret:
- Go to My Dashboard
- Navigate to the Websites tab
- Click on the API Access Keys link for the Website you want to use for your API call
- Click the Create New App Secret link
- Enter a name for your App Secret, and click the Create App Secret button
- Your new App Secret will then be displayed
- Copy and save your App Secret, because it will not be available later
Calling The API
Your API calls will be HTTPS Posts, with parameters passed inside a JSON Object as the body of the Post. Other parameters specific to the API endpoint you are calling, will be placed in the same JSON Object body.
Protocol: HTTPS
Method: POST
Header: Content-Type: application/json; charset=utf-8
Example JSON POST Body
{
"appId": "YOUR_APP_ID_VALUE",
"appSecret": "YOUR_APP_SECRET_VALUE",
}