HTTP 身份验证 VS OAuth VS HttpClient 身份验证
上述哪种身份验证方法被认为更好,为什么?目的可能是执行 GET/POST 请求。
Which of the authentication methods above is considered to be better and why? The purpose could be for performing a GET/POST request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OAuth 的一个主要好处是,它的工作原理有点像代客钥匙 - 您可以授权应用程序代表您工作,而无需向其提供您的个人密码,您可以撤销其访问权限,而无需更改自己的密码等。
One major benefit is that OAuth works a bit like a valet key - you can authorize an app to work on your behalf without giving it your personal password, you can revoke its access without having to change your own password, etc.
http 身份验证未加密。 Oauth 使用身份验证服务器通过 https 安全登录,因此更加安全。
http authentication is not encrypted. Oauth uses an authentication server to securely log in over https therefore it is more secure.