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 just updated my iPhone app supporting iOS native sharing of Facebook SDK 3.1'. Previously, we were showing Sharing Popup where we can pass "link", "name", "caption", "description". But now in iOS native sharing popup, there is only one text input, "initialText".

[FBNativeDialogs presentShareDialogModallyFrom:self initialText:@"Status message" image:nil url:nil handler:nil]

How can we get the previous format(with "link", "name", "caption", "description") in iOS native sharing?

Thanks in advance.

share|improve this question

1 Answer

up vote 2 down vote accepted

I fixed it with a help of Karthikeyan

I will send only link parameter in iOS 6. Suppose the link is "http://example.com/sharingpage"

And then in the web page, we will change dynamically the following parameters. og:title og:description og:url og:image

after we share the link via iOS 6 native sharing popup, facebook itself will take the following values from the link and show it in our post, which we shared in Facebook wall.

share|improve this answer

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.