Search another article?
Basic Authentication
Some application requires basic authentication to retrieve information.
curl --user "username:password" https://app.website.com/api...
Username and password should be pass in SGBox Playbook in the following way:
- Encode your username/password in base64. In our case will be: dXNlcm5hbWU6cGFzc3dvcmQ=
- Create a new Authorization header with value: Basic dXNlcm5hbWU6cGFzc3dvcmQ=