I tried to post a picture to user's wall, but I don't know how I can modify the picture size (width, height). I'm using PHP, here is my code:
$post = array('access_token' => $token,
'message'=> '...',
'link'=> 'https://...',
'picture'=> '../..jpg',
'name'=> '...',
'caption'=> '...',
'description'=> '...');
try{
$res = $facebook->api('/me/feed','POST',$post);
} catch (Exception $e){
echo $e->getMessage();
}
Please help! Thanks a lot!