如何为您的网站设置 API 密钥系统?

发布于 2024-07-05 12:53:32 字数 1452 浏览 8 评论 0原文

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

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

发布评论

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

评论(5

不美如何 2024-07-12 12:53:32

还有一些基础设施服务可以为您管理所有这些,例如 http://www.3scale.net (披露我工作那里),http://www.mashery.comhttp://www.apigee.com/

There are also infrastructure services that manage all this for you like http://www.3scale.net (disclosure I work there), http://www.mashery.com and http://www.apigee.com/.

久光 2024-07-12 12:53:32

许多聪明人正在制定一个标准,它被称为 OAuth。 它已经有许多示例实现,因此很容易上手。

A number of smart people are working on a standard, and it's called OAuth. It already has a number of sample implementations, so it's pretty easy to get started.

∞梦里开花 2024-07-12 12:53:32

简单:

  1. 为每个用户生成一个密钥,
  2. 如果没有此密钥,则拒绝每个请求的访问

Simple:

  1. Generate a key for each user
  2. Deny access for each request without this key
空袭的梦i 2024-07-12 12:53:32

目前,我使用多个 MD5 与盐的串联。 MD5 是根据用户数据的各种串联生成的。

Currently, I use a concatenation of multiple MD5s with a salt. The MD5s are generated off of various concatenations of user data.

大海や 2024-07-12 12:53:32

生成密钥的一个好方法是在数据库中的每个用户记录上存储 GUID(全局唯一标识符)。 GUID 将是唯一的并且几乎不可能猜测。

A good way of generating a key would be to store a GUID (Globally Unique Identifier) on each user record n the database. GUID is going to be unique and almost impossible to guess.

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