access权限的到期时间

access权限的到期时间

本文介绍了访问令牌具有offline_access权限的到期时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Facebook权限页面说明关于offline_access的以下内容:

Facebook Permissions page states the following about offline_access:

然后我看到这个主题

尝试这个:

 client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&
 client_secret=YOUR_APP_SECRET&code=THE_CODE_FROM_ABOVE

这个没有offline_access权限的url响应如下: / p>

This url without offline_access permission responding like this:

access_token=.....&expires=5462

但是,offline_access权限只响应access_token。我没有得到这个,Facebook说它的长寿,但是活着多久?

But with offline_access permission responding just access_token. I dont get this, facebook says its long-lived but how long lived?

如何在使用offline_access权限到期访问令牌时学习?

How can I learn when expires access token with offline_access permission?

推荐答案

使用offline_access权限时返回的访问令牌永远不会过期。

Access tokens returned when using the offline_access permission never expire.

编辑:根据文档令牌是长寿命。我假设你只需要处理他们不再工作的情况(如果甚至发生)。

According to the documentation the tokens are 'long-lived'. I'm assuming you will just have to handle the scenario where they no longer work (if that even happens).

这篇关于访问令牌具有offline_access权限的到期时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 06:17