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.

I am building an app where users can post a photo directly to their timeline from our app. We want to pre-populate it with some branded text and a link to the brand's Facebook page. For example, something like: "Check out my photo at XYZ event". And XYZ would be a link to http://facebook.com/xyz

The closest thing I can find is this: http://digitizor.com/2011/01/24/tag-user-facebook-graph/ but it would seem that this trick is no longer working.

We are using CURL to upload the photo to the users wall with the following array converted to a string for the CURLOPT_POSTFIELDS:

$graph_url= "https://graph.facebook.com/me/photos?"
. "access_token=" .$access_token;
$fields = array(
'url'=>"http://" . $imgPath,
'message'=>urlencode(stripslashes($_POST['message'] . " @[$brandFBUID:1:$brandName]" )) );
share|improve this question

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.