73

我的网站使用终身访问令牌 ( offline_access)。但是,如果用户更改他/她的密码,访问令牌将被重置。在调用 Graph API 之前,是否有一种方法可以检查当前访问令牌是否有效?谢谢你的时间。

4

10 回答 10

72

离线,不向 Facebook 发送任何内容 - 我不这么认为。最简单的方法可能是将请求发送到:

https://graph.facebook.com/me?access_token=...

Facebook 还支持订阅实时更新,但我不确定如何将它们应用于这种情况。

于 2010-10-02T15:20:39.847 回答
45

如果您想知道令牌到期时间,您可以使用 appid 和令牌传递一个打开的图形 url,如下所示,它将起作用。

https://graph.facebook.com/oauth/access_token_info?client_id=APPID&access_token=xxxxxxxxx
于 2013-02-07T07:14:49.013 回答
38

基本上,FB 希望您对其进行轮询,或检测案例并重定向用户以进行重新认证。烦人,但官方:

(旧的,过时的链接。见下文) https://developers.facebook.com/blog/post/500/

编辑:Facebook 改变了他们的链接结构,没有重定向。并不惊讶。

https://developers.facebook.com/blog/post/2011/05/13/how-to--handle-expired-access-tokens/

于 2011-06-15T19:36:19.663 回答
7

您可以使用令牌调试服务检查令牌,看看这里

https://graph.facebook.com/debug_token?input_token=INPUT_TOKEN&access_token=ACCESS_TOKEN

https://developers.facebook.com/docs/howtos/login/debugging-access-tokens/

于 2013-04-10T13:48:32.967 回答
4

实时更新可以让您解决这个问题,但它会非常复杂。基本上,您可以订阅更新,这些更新会告诉您 1) 用户是否删除了应用程序或 2) 用户是否删除了权限。您可以使用它来存储 facebook 用户的当前权限。这样,如果用户删除了您的应用程序,您就会知道访问令牌已过期。

实时更新实际上是 facebooks 推荐的处理权限的方式。许多应用程序在每次加载页面时都会调用 api 来检查权限。这往往是缓慢且不可靠的。

于 2010-10-05T06:04:25.830 回答
4

我浏览了这些帖子,发现我找到了非常好的解决方案,如下所示:

GET graph.facebook.com/debug_token?
    input_token={token-to-inspect}
    &access_token={app_id}|{app_secret}

此请求的响应为您提供所需的一切:

  • 您的应用 ID - 这将验证令牌来自您的应用
  • 应用程序名称- 也可以检查
  • expires_at - 令牌过期时间
  • is_valid - 用于检查的布尔值
  • user_id - 你也可以比较和检查

请注意“|” 标志必须作为字母存在

于 2018-01-25T22:35:36.920 回答
1
        //When user access token expires user must be logged in and renew the access token him self.it is a Facebook policy 
        //you can overcome this by sending email to users who have expired access token.
        //create a table of successful sending to monitor sending process
        //if any failure happened with the user an email is sent to him to ask him to activate there account again.with a link to your subscription page.
        //and here is the code should be written on that page. 
         $app_id = "YOUR_APP_ID";
         $app_secret = "YOUR_APP_SECRET"; 
         $my_url = "YOUR_POST_LOGIN_URL";

        // known valid access token stored in a database 
        $access_token = "YOUR_STORED_ACCESS_TOKEN";

        $code = $_REQUEST["code"];

       // If we get a code, it means that we have re-authed the user 
       //and can get a valid access_token. 
       if (isset($code)) {
         $token_url="https://graph.facebook.com/oauth/access_token?client_id="
           . $app_id . "&redirect_uri=" . urlencode($my_url) 
           . "&client_secret=" . $app_secret 
           . "&code=" . $code . "&display=popup";
         $response = file_get_contents($token_url);
         $params = null;
         parse_str($response, $params);
         $access_token = $params['access_token'];
       }


       // Attempt to query the graph:
       $graph_url = "https://graph.facebook.com/me?"
         . "access_token=" . $access_token;
       $response = curl_get_file_contents($graph_url);
       $decoded_response = json_decode($response);

       //Check for errors 
       if ($decoded_response->error) {
       // check to see if this is an oAuth error:
         if ($decoded_response->error->type== "OAuthException") {
           // Retrieving a valid access token. 
           $dialog_url= "https://www.facebook.com/dialog/oauth?"
             . "client_id=" . $app_id 
             . "&redirect_uri=" . urlencode($my_url);
           echo("<script> top.location.href='" . $dialog_url 
          . "'</script>");
        }
        else {
          echo "other error has happened";
        }
      } 
      else {
      // success
        echo("success" . $decoded_response->name);
        echo($access_token);
      }

      // note this wrapper function exists in order to circumvent PHP's 
      //strict obeying of HTTP error codes.  In this case, Facebook 
      //returns error code 400 which PHP obeys and wipes out 
      //the response.
      function curl_get_file_contents($URL) {
        $c = curl_init();
        curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($c, CURLOPT_URL, $URL);
        $contents = curl_exec($c);
        $err  = curl_getinfo($c,CURLINFO_HTTP_CODE);
        curl_close($c);
        if ($contents) return $contents;
        else return FALSE;
      }
于 2013-06-10T14:30:23.173 回答
1

离线 - 这是不可能的

询问用户是否给予许可:

https://graph.facebook.com/{facebook-id}/permissions?access_token={access-token}

如果访问令牌无效,则会报错:

{  
   error:{  
      message:"The access token could not be decrypted",
      type:"OAuthException",
      code:190
   }
}

否则,它将给出用户已授予的权限列表:

data:[  
   {  
      installed:1,
      ...... permission list......... 
      bookmarked:1
   }
]
于 2014-12-27T07:59:42.977 回答
0

自从 OP 以来事情发生了变化,更新了这个:

您可以在此处调试访问令牌:https ://developers.facebook.com/tools/debug/accesstoken?version=v2.5&q= {access_token}

于 2015-10-16T21:04:50.380 回答
-6

Otto 对 facebook 帖子的回答似乎是对这个问题的官方回应,但是它使用直接 PHP 而不是 SDK,并且还使用 JS 而不是 PHP 来解决问题。如果您使用 PHP 来检查有效会话,您通常需要一种 PHP 方法来确保有效会话才能继续。

以下代码使用图形 API 检查 me 对象。如果抛出异常,它会破坏*当前的 Facebook 会话。

try{
    $facebook->api('/me');
}
catch( FacebookApiException $e ){
    $facebook->destroySession();
}

这会强制稍后的图形调用实例化一个新的 Facebook 会话。这至少使您可以访问公共数据,以便您可以呈现页面不需要 FB 用户权限:

$facebook->api('/userName');

要重新获得用户权限访问,用户需要登录到您的应用程序(这与登录到 Facebook 本身不同)。您可以使用 JS 或 PHP 执行此操作:

$facebook->getLoginUrl();

*请注意,destroySession() 调用尚未在 PHP SDK 的标记版本中。使用主分支或修补它。

于 2012-01-24T01:16:48.423 回答