Does anyone know 开发者_开发问答how to get the authorization header value from an http request in asp.net? I've been trying to google it but i haven't found anything on retrieving the authorization header values.
Easy:
string value = Request.Headers["Authorization"]
Not something you usually handle on your own though.
精彩评论