Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 Scribe 成功地创建了一个令牌并从 fitbit 获得了一个安全的资源。当我再次运行程序时,我可以使用原始的 requestToken 和验证器来获取新的身份验证令牌吗?还是我需要再次获得程序授权?
如果我可以使用令牌,您如何将其存储在 Java 中以便可以重复使用?
谢谢
不,您不能重用请求令牌和验证器。使用它们来获取“访问令牌和刷新令牌”(Oauth2)或“密钥和秘密”(Oauth1)并将它们存储在数据库中。然后在尝试访问用户详细信息时,从 db 中使用这些信息。
如果它给出错误 401 accesstoken expired ,请使用刷新令牌获取新的 accessToken(Oauth2)。