[Answer]-How to access username information from within a CURL request?

1👍

The command you wrote will send the TEST username and TEST password using the HTTP header Authorization.

Authorization: USERNAME THE_PASSWORD_USING_BASE64_ENCODING

You can read more about the Basic access authentication here: http://en.wikipedia.org/wiki/Basic_access_authentication

Leave a comment