.net - c# : How to pass Authorization values as Headers using WebBrowser.Navigate() method? -
there api used fetch data server, when pass whole url authorization value it's working fine below :
webbrowser.navigate("https://abc/resources/1&authorization=bearer%tokenvalue");
know security leak , not practice hence want send authorization details in headers section.
below code tried couldn't make work.
string header = "authorization=bearer tokenvalue" webbrowser.navigate(https://abc/resources/1, "", null, header);
Comments
Post a Comment