Simple facebook application communicate with a database server (with wrapper). For security reasons there is needed to check if an user asking server for some action is really an owner of his id (sent in request).
For this purpose request to server contains access_token and id of user from a web application based on javascript SDK. I want to check if id of owner of access token and id of user is the same. First step is to getting id of owner of access token from Facebook. Using code:
class SessionValidator {
private $userId; //id of user
private $accessToken; //facebook user's access token
private $fb;
public function __construct($userId, $accessToken){
$this->userId = $userId;
$this->accessToken = $accessToken;
$app_id = @appId;
$app_secret = @secret;
$fb = new Facebook(array('appId' => $app_id, 'secret' => $app_secret));
$fb->setAccessToken($accessToken);
$this->fb = $fb;
}
public function authUserSession(){
$url = 'https://graph.facebook.com/';
$data['fields'] = $this->userId;
$data['access_token'] = $this->accessToken;
$response = $this->post_request($url, $data);
return $response;
}
private function post_request($url, $data){
return $this->fb->api('/me', 'POST', $data);
}
}
Facebook has been giving response:
Uncaught OAuthException: (#10) Application does not have permission for this action
The same response is if I have removed line: $fb->setAccessToken($accessToken);. I'm sure that appId and appSecure are correct. Client-side app and server-side app are placing on different hosts, but both domains are added as domain of app, on facebook developers site. Any idea why I received this error?