.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

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -