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???