Staging Authorization
I'm developing a C# application to access our community and am having difficulty authorizing with the Staging environment for testing. Is it possible to automatically provide the username / password in HTTP headers to authenticate? I've tried adding an Authorization header in the form "Authorization: Basic " with a Base64 encoded "username:password" parameter. I've also added "Host: Lithium" header field, but I receive a response of "503: Service Unavailable". If I don't include either of these header values I get the expected 401 error. Are there other headers I need to include?
The URL I'm trying to get is http://community.stage.lithium.com/community/restapi/vc where "community" is our community name. I'm not familiar enough with basic HTTP authorization to figure this out :smileysad: