rest api 认证:如何第一次获取token
Rest api authentication: how to get the token the first time
感谢此页面 api_key_authentication 我有一个运行良好的身份验证系统。
所以,基本上每个用户都有自己的 api_key
字段(存储在 fos_user table 中),当我使用来自 fos_user 的任何 api_key
执行请求时,我看到在识别用户的响应中。
问题是:API 用户如何检索他的 api_key
?
您可以生成 api 密钥并将其发送给用户(以某种方式)或进行身份验证 api 用户向您发送他的登录名和密码,然后您生成并发送他的 api 键(这是最知名的方式)。
感谢此页面 api_key_authentication 我有一个运行良好的身份验证系统。
所以,基本上每个用户都有自己的 api_key
字段(存储在 fos_user table 中),当我使用来自 fos_user 的任何 api_key
执行请求时,我看到在识别用户的响应中。
问题是:API 用户如何检索他的 api_key
?
您可以生成 api 密钥并将其发送给用户(以某种方式)或进行身份验证 api 用户向您发送他的登录名和密码,然后您生成并发送他的 api 键(这是最知名的方式)。