Authentication
All APIs take an token param in the Authorization header. These key are associated with a user and allow permission to the user to request the API.
Signature Request
Send a POST request to http://52.220.113.182:8000/
by providing these arguments as application/json
with request payload:
Sign In
You will get a response similar to this:
You can use the token contained in the JSON response as an authentication key.
Construct Authorization Key
After you get the signature response contains token
, you can start to construct your authorization key with this format:
Token for AI services
You can't use the AI service API if you haven't got a special token that is sent with the image or video data along with some supporting parameters. to get it you must first create a token.
Do POST request http://52.220.113.182:8000/createtoken?uuid="your uuid"
Response will be in JSON form with token in it
Last updated