Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I post stories with these parameters (1)

{
'meal':(meal url),
'fb:explicitly_shared':'true',
'image[0][url]':(image url)
}

The story shows up fine with this text in the activity log: "(User) ate (Meal name)" and a small image

Once I add the user_generated parameter (2)

{
'meal':(meal url),
'fb:explicitly_shared':'true',
'image[0][url]':(image url),
'image[0][user_generated]':'true
}

The story shows up with a big picture, but no action text! All that is seen is "(User)" as a link, and the image next to it. No action name, no object name. What gives?

See attached screenshot: screenshot of activity log

Posting Code (PHP SDK)

                $params = array(
                    'meal'=>$url,
                    'access_token'=>$token,
                    'fb:explicitly_shared'=>'true',
                    'image[0][url]'=>$imageUrl,
                    'image[0][user_generated]'=>'true',
                    'timestamp'=>date('c',strtotime($model->visible_date)-1),
                );
                if(!empty($meal->description)) {
                    $params['message']='I had '.$meal->description.' '.$url;
                }
                $out = $facebook->api('/me/appname_:have','POST',$params);
share|improve this question
Show us your Posting code... – Svetlio Oct 25 '12 at 6:20
my bad, see edit – Ben Oct 25 '12 at 6:27
Does this url which you send 'meal' have Meta tags for description – Svetlio Oct 25 '12 at 6:33
yes it does, that's how it works without the user_generated parameters. – Ben Oct 25 '12 at 15:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.