Below code uploads the photo successfully, but when I try to tag I get the following error:
Uncaught OAuthException: Invalid OAuth access token signature
How can I use accesstoken to tag a photo?
$photo = $facebook->api('/'.$aid.'/photos', 'POST', $attachment);
$tags['access_token'] = $access_token;
$tags = array(
'tag_uid'=> $re[0],
'x' => '30',
'y' => '60',
);
$response = $facebook->api('/'.$photo['id'].'/tags', 'POST', $tags);