The url I use to retrieve JSON data required Basic Authentication scheme. Is it possible to add to this module? Or is there a work around?
From the url site:
Basic authentication is a simple authentication scheme built into the HTTP protocol. To use it, send your HTTP requests with an Authorization header that contains the word Basic followed by a space and a base64-encoded string username:password.
The url I use to retrieve JSON data required Basic Authentication scheme. Is it possible to add to this module? Or is there a work around?
From the url site: Basic authentication is a simple authentication scheme built into the HTTP protocol. To use it, send your HTTP requests with an Authorization header that contains the word Basic followed by a space and a base64-encoded string username:password.
Example: Authorization: Basic ZGVtbzpwQDU1dzByZA==
Thank you