The following are the REST APIs that are implemented in WSO2 DAS 3.1.0.
Info |
---|
The REST APIs are secured with basic authentication. Therefore, follow the steps below to add a basic auth header when calling these methods.- Build a string of the form username:password.
- Encode the string you created above using Base64. For encoding the above string using Base64, see Encode to Base64 format.
- Define an authorization header with the term "Basic_", followed by the encoded string. For example, the basic auth authorization header using "admin" as both username and password is as follows:
Authorization: Basic YWRtaW46YWRtaW4=
|
...