构建 API - 发送密码的安全方式

发布于 2024-12-02 10:27:08 字数 148 浏览 0 评论 0原文

我正在构建 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回忆躺在深渊里 2024-12-09 10:27:08

通过 SSL 加密连接以 POST 有效负载(而不是 URL!)的形式发送。按照您的建议发送密码是非常不安全的。

Send it in POST payload (not in URL!) over SSL encrypted connection. Sending password as you suggested is extremely insecure.

野心澎湃 2024-12-09 10:27:08

是的。不要那样做。使用 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=...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文