Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have thousands of token in my sql database. But after facebook updated, many token become invalid.. How can I remove dead token from my database?

<?
$result = mysql_query("
      SELECT
         *
      FROM
         tokendata 
   ");


  if($result){
      while($row = mysql_fetch_array($result, MYSQL_ASSOC)){
            $m = $row['access_token'];
            $facebook->setAccessToken ($m);
        try {
            $facebook->api("/me/", 'POST');
      }
       catch (FacebookApiException $e) {
            MYSQL COMMAND HERE;
         }
}
}
?>

what is the mysql command to remove bad token???

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.