Sign In App API verwendet den basic authentication. Der Header
besteht aus dem key
und dem secret
, die bei der Erstellung des API-Clients erzeugt wurden.
Basis-Authentifizierung
Die UserID ist Ihr key
und das Passwort ist das secret
.
Authorization: Basic PGtleT46PHNlY3JldD4
> curl -u <key>:<secret> \
-H "Content-type: application/json" \
-H "Accept: application/json" \
-X GET \
https://<base-url>/client-api/v1/<resource-path>
> curl -u <key>:<secret> \
-H "Content-type: application/json" \
-H "Accept: application/json" \
-X POST \
-d '{"key1": "value1", "key2": "value2"}' \
https://<base-url>/client-api/v1/<resource-path>