Authorization
Being as identity and access management solution PlusAuth also uses itself for authentication. For using the Api you must have an access token retrieved from PlusAuth. Be aware that access tokens hold your privileges so make sure to keep them safe.
PlusAuth Rest API protected by OAuth 2.0 and you can access it with Bearer tokens.
API requests that made over HTTP will be redirected to corresponding HTTPS endpoint. Depending on your http client those redirects may fail, so make sure you use HTTPS instead of HTTP.
You can retrieve tokens by using OAuth 2.0 flows.
Make sure your client has `password` grant type enabled.
1
2
3
4
5
6
7
8
9
10
Loading...