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.

we have an iPhone application that can share to Facebook but we have a problem with one of our share links (all the links use the same code).

The code is the following:

NSString *fullUrl = [NSString stringWithFormat:@"http://www.facebook.com/sharer.php?u=%@", 
[campaignToShare.shareurl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:fullUrl]];

When we call the openURL method with the parameter: http://www.facebook.com/sharer.php?u=http://open.mikz.com/upvudd

we get it translated on safari (also opera) to the following url: http://m.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fopen.mikz.com%2Fupvudd&_rdr

which does not work, however if use the url before the redirect to m.facebook (on the computer) then it works.

Is the code that we have written wrong or have we found a bug for iOS + m.facebook.com?

Obs: It works for all the other links that we have, the only differens on those links are that they have a different code (instead of upvudd).

share|improve this question
try this post stackoverflow.com/questions/4385363/… – Dinesh Jun 8 '12 at 10:05
We are not using Facebook sdk (at the moment) and would like to get the problem solved without using it. – Mikael Rudner Jun 12 '12 at 6:32

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.