使用 REST 进行身份验证是一种好的做法吗?

发布于 2024-12-08 09:34:33 字数 89 浏览 0 评论 0原文

据我了解,当使用 REST 服务时,我们依靠 URI 来请求数据,因此在身份验证服务中,我们需要发送用户名和密码。通过网址输入密码,这很糟糕,我在这里遗漏了什么吗?

As I understand, when using REST services we count on the URI to request data and so in an authentication service, we would need to send the username & password through the URL, which is bad, am I missing something here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

清秋悲枫 2024-12-15 09:34:33

您的身份验证服务应该是 POST,这会将凭据保留在 URL 之外。只要服务通过 HTTPS 运行(确实如此,对吧?),那么您就可以免受窥探。

Your authentication service should be a POST, which will keep the credentials out of the URL. As long as the service runs over HTTPS (it does, right?), then you're safe from prying eyes.

肤浅与狂妄 2024-12-15 09:34:33

如果您不想将数据添加到 URL,也可以发布到 REST 服务。

If you don't want to add data to the URL, you can also Post to a REST service.

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