views:

396

answers:

4

Hi all,

I've been struggling to upload an image from the user's computer and posted to our group page using the Facebook Graph API. I was able to send a post request to facebook with the image however, I'm getting this error back: ERROR: (#200) User must have accepted TOS. To some extent, I don't believe that I need the user to authorize himself as the photo is being uploaded to our group page. This below, is the code i'm using:

if($albumId != null) {

$args = array( 'message' => $description ); $args[basename($photoPath)] = '@' . realpath($photoPath); $ch = curl_init(); $url = 'https://graph.facebook.com/'.$albumId.'/photos?'.$token; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $args); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); $data = curl_exec($ch);

$photoId = json_decode($data, true); if(isset($photoId['error'])) die('ERROR: '.$photoId['error']['message']); $temp = explode('.', sprintf('%f', $photoId['id'])); $photoId = $temp[0]; return $photoId; }

Can somebody tell me if I need to request extra permissions from the user or what i'm doing wrong?

Thanks very much!

A: 

I have the same question. Too bad no one is willing to answer.

Unk Nown
A: 

Actually, I never succeeded in this :(. As a work around, we created a new facebook user instead of a group page.

A: 

This is a known bug and it looks like they're working on it:

http://bugs.developers.facebook.net/show_bug.cgi?id=11254

john h.
A: 

thanks for the info John

related questions