As the title says,
Does ASP .NET c# HttpWebRequest support HTTPS Authentication via username:password@www.website.com?
Almost everything I find regarding authentication appends the username and password after the website. Will using System.Net.HttpRequest work with username and password before the website?
[EDIT]
Let me explain the scenario, this is for an application that I am developing that makes a HTTP POST to a website. We are already using HTTPS, and the website server has my IP whielisted. At the request of someone from the ‘website’, they want to use the username:password@www.website.com in addition for authentication.
Adding credentials on the url never worked for me. This is how I’m currently doing it: