ASP.NET Web Api: How to pass an access token (oAuth 2.0) using URL parameter?

后端 未结 3 847
悲&欢浪女
悲&欢浪女 2020-12-24 07:36

Do you have any idea how I can use, an access_token generated by the default asp.net web api 2 OAuth 2 authorization mechanism, in the url parameters. Currently I am able to

3条回答
  •  悲哀的现实
    2020-12-24 08:12

    This is a terrible idea because the token is not protected in the query string. It is encrypted in the header with SSL.

提交回复
热议问题