When I upload the post to my wall, I'd like to see not only a message, but also a picture. If I put (along with the other parameters) a string with URL of the image for "picture" parameter, it works. But only in case if the image is in some side-part server, not in my facebook albums.
And when I try to use the url of image from my album, I just get "Auth exception" with no explanation in response (it's just 'nil'); I use the last Hackbook example and on base of it make the request like this:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Some message", @"message",
@"http://a1.sphotos.ak.fbcdn.net/hphotos-ak-snc6/62347_158935964133931_100000525850093_395542_6306928_n.jpg", @"link",
@"http://a1.sphotos.ak.fbcdn.net/hphotos-ak-snc6/62347_158935964133931_100000525850093_395542_6306928_n.jpg", @"picture",
nil];
[[delegate facebook] requestWithGraphPath:@"me/feed"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
The references can be opened in a separate browser (not containing any cookies), but with them I get crash.
If to change the references to smth. like
Everything works fine.
Any idea would be much appreciated.