Include the facebook api file and set the appId and appSecret $facebook->setFileUploadSupport(true); $args = array('message' => 'Photo Uploaded'); $args['access_token'] = 'access token'; $filename = 'image.jpg' $args['image'] = '@' . realpath($filename); $result = $facebook->api('/' . $fuid . '/photos', 'post', $args);
My current app lets the user authorise off-line updates and I store the access_token, fuid. and I can succesfully post to a users wall when they are offline.but when i upload the photo to server it does not work. Can any body tell me the solution?.