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'm developing an iPhone game, using the Facebook SDK. I want to be able to post on a friend's wall an invitation with a link to the game (App Store link). I looked everywhere but couldn't find a way to do it.

How can I do that?

share|improve this question

2 Answers

up vote 0 down vote accepted

The solution is to use Facebook's Requests system - https://developers.facebook.com/docs/howtos/send-requests-using-ios-sdk/

share|improve this answer

First you must set the permissions-

'scope' => 'email,publish_stream,user_likes'

then,

$attachment = array
(
     'access_token'=>  $accessToken,
     'message' => 'Дадох прогноза в Лаком за гол!',
     'name' => 'Лаком за гол',
     'description' => $fname.' участва в играта на Actualno.com. Участвай и ти и го победи!',
     'link' => 'http://www.actualno.com/'.$this->appname.'/game?app_data='.$uid,
     'picture' => 'http://www.actualno.com/img/'.$this->appname.'/'.$this->appname.'_post.jpg'
);
$facebook->api('/me/feed/','post',$attachment); 
share|improve this answer
This will post on my wall - I want to post on a friend's wall – godmoney Jan 12 at 14:55

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.