Skip to content

Instantly share code, notes, and snippets.

@sursir
Last active February 26, 2018 10:01
Show Gist options
  • Select an option

  • Save sursir/033f5df9eb0a5d4f7801e2d8c98557eb to your computer and use it in GitHub Desktop.

Select an option

Save sursir/033f5df9eb0a5d4f7801e2d8c98557eb to your computer and use it in GitHub Desktop.
jwt

JSON web Token,简称JWT,本质是一个token,是一种紧凑的URL安全方法,用于在网络通信的双方之间传递。一般放在HTTP的headers 参数里面的authorization里面,值的前面加Bearer关键字和空格。除此之外,也可以在url和request body中传递。


作者:space back
链接:https://www.zhihu.com/question/36135526/answer/136603826
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 单点登录
  • 实现某个动作(不敏感)
  • 获取资源(不敏感)
  • 防爬虫(不敏感)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment