Introduction
In order to use the developers platform you need to be registered as a pro user of Socialconnector. If you are not a PRO User yet, please create your new account on Socialconnector
Authentication
The API endpoints are authorized via a generated API Key from the socialconnector application.
Each request made should contain the X-API Header with assigned API Key as value:
get-users.ts
axios({
method:'GET',
url:'https://gateway.socialconnector.io/api/v2/[ENDPOINT]',
headers:{
X-API-KEY: {{apiKey}}
}
})
info
Please note that no Bearer or Basic keyword is being passed in the authorization field - just the plain token.
Developers API is available in two environments:
- Production:
gateway.socialconnector.io/api/v2/ - Sandbox:
gatewaytesting.socialconnector.io/api/v2/
Sandbox Environment is recommended for testing purposes.