Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

arghh!! keep getting this error, and i don't know why.

My website is https and i set this in htaccess:

  RewriteEngine On 
  RewriteCond %{SERVER_PORT} 80 
  RewriteRule ^(.*)$ https://x/konkurrence/$1 [L,QSA]

My code is:

   foreach ( $_POST['friends'] as $ids ) {
   try {
       $facebook->api("/".$event_id . "/invited/".$ids,'POST');
   } catch (FacebookApiException $e) {
       echo "<br>Error here: ".$ids . "(".$e.")";
   }

   }

Output is:

 Error here: 531559617(OAuthException: (#200) )
 Error here: 578399497(OAuthException: (#200) )
 Error here: 597219863(OAuthException: (#200) )
 Error here: 611583892(OAuthException: (#200) )
 Error here: 615217497(OAuthException: (#200) )
 Error here: 615862203(OAuthException: (#200) )
 Error here: 622354685(OAuthException: (#200) )

I don't set loginUrl() if user already is signed in ( because i read it would generate new state id)..

So what to do???

share|improve this question
I have really tried everything, please help. if ( !isset($_SESSION['fb_537668342916791_state'])): $_SESSION['fb_537668342916791_state'] = $_GET['state']; $_SESSION['fb_537668342916791_code'] = $_GET['code']; else: $facebook->state = $_SESSION['fb_537668342916791_state']; $facebook->code = $_SESSION['fb_537668342916791_code']; endif; – user1743233 Oct 18 '12 at 22:27

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.