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 sharing a feed on wall. The link is a link to some facebook page.

When the link is pressed from chrome, the page opens properly, Opens from chrome

but when I try to open it in iPhone, the page crashes.

enter image description here

Here is the code:

...
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
    @"name",@"name",
    @"description", @"description",
    [NSString stringWithFormat: @"https://www.facebook.com/Kyoto.sushi"], @"link", 
    @"caption", @"caption",
    [NSString stringWithFormat:pictureUrl], @"picture",
    @"message",@"message",
    nil];
[facebook requestWithGraphPath:@"me/feed"
                         andParams:params
                     andHttpMethod:@"POST"
                       andDelegate:self];
...

I pressed copy the URL, and got this one: fb://faceweb/f?href=%2FKyoto.sushi%3Fid%3D100616296685390%26_rdr guess Facebook recognizes that it is a Facebook link and converts it to something. And this something doesn't really work.

share|improve this question
Luda I tried posting your code from my app, and the link worked great both in the browser and in the native Facebook app.. – Eyal Aug 8 '12 at 17:04
Eyal, are you sure that after posting the feed, you have managed to find your post in the facebook application, tap on the link and managed to open the sushi page? – Luda Aug 9 '12 at 11:56
You can see for yourself, search for the user roykarn@gmail.com, and check out the wall – Eyal Aug 9 '12 at 12:14

1 Answer

up vote 0 down vote accepted

Your URL has http:// and https://

http://https://www.facebook.com/Kyoto.sushi

that should be

https://www.facebook.com/Kyoto.sushi
share|improve this answer
It is a mistace here. It is OK in the code – Luda Aug 8 '12 at 16:52

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.