I have a situation here I am preparing a custom post for facebook like this
[newRequest setPostValue:@"http://photos-e.ak.fbcdn.net/hphotos-ak-snc6/230638_106558809431344_100002316768096_62076_5620590_s.jpg" forKey:@"picture"];
[newRequest setPostValue:@"nem appears here??" forKey:@"name"];
[newRequest setPostValue:@"caption appears here??" forKey:@"caption"];
[newRequest setPostValue:@"description appears here??" forKey:@"description"];
[newRequest setPostValue:@"http://google.com" forKey:@"link"];
[newRequest setPostValue:_accessToken forKey:@"access_token"];
[newRequest setDidFinishSelector:@selector(postToWallFinished:)];
whenver I am trying to post a image that has url on web its perfectly shown in the feed but when I try to provide url of my private server whole "picture" key is removed.
Please tell me how can I show a uploaded picture on wall. (I have uploade the image to albums as well, even got the url of uploaded image but it says we cannot stream fbcn images)
THnx in advance