构建 API - 发送密码的安全方式
我正在构建 REST API,但我对密码发送方式是否安全存有疑问?
密码在 URL 中发送,如下所示:
https://www.example.com/api-version/user-name/password/
I'm building a REST API and I am in doubt about the way the password's sent is safe?
The password is sent in the URL like this:
https://www.example.com/api-version/user-name/password/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过 SSL 加密连接以 POST 有效负载(而不是 URL!)的形式发送。按照您的建议发送密码是非常不安全的。
Send it in POST payload (not in URL!) over SSL encrypted connection. Sending password as you suggested is extremely insecure.
是的。不要那样做。使用 HTTP Basic 身份验证,或者传递访问令牌(例如 OAuth 令牌)作为参数,即
http://www.example.com/api-version/end-point/?access_token=...
Yeah. Don't do that. Either use HTTP Basic authentication, or pass an access token such as an OAuth token as a parameter, i.e.
http://www.example.com/api-version/end-point/?access_token=...