I'm using AMFPHP 1.9 (i know its the older version but thats not important for now). and i want to communicate with flash. When O test my facebookApi service from the browser everything works fine and i get data back from the Facebook API.
But when I'm debugging with flash (AS 3.0) I'm getting the following error:
[SWF] C:\prototypeAfstuderen\test3.swf - 2925 bytes after decompression
User Error
/customers/d/5/a/navidmirzaie.com/httpd.www/facebook-facebook-php-sdk/src/base_facebook.php
An active access token must be used to query information about the current user.
1238
AMFPHP_RUNTIME_ERROR
my service looks like bellow.
<?php
include "../../facebook-facebook-php-sdk/src/facebook.php";
class facebookApi{
private $fbApi;
public function __construct(){
$this->fbApi = new Facebook(array(
'appId'=>'357570560984266',
'secret'=>'484752fa5b8748fd4ac578fc99cbdbaf',
'cookie' => true
));
}
public function getLoggedinUser(){
$data = $this->fbApi->api("/me/","GET",array('acces_token'=>$this->fbApi->getAccessToken()));
return $data;
}
public function getPictures(){
$data = $this->fbApi->api("/me/photos/","GET",array('acces_token'=>$this->fbApi->getAccessToken()));
return $data;
}
}
?>
I'm running my swf from my desktop computer and i want the data be accessible.
Is there a way to fix this issue?
/browserfolder is your service browser – Ronnie Sep 12 '12 at 5:20