Im working on posting to facebook on an ios app. I had it working fine but somehow it has stopped working. I have the users auth at this point and all thats fine it just keeps giving me this error when i try to post to facebook "the post's action links must be valid urls" below is my code for the post
currentAPICall = kDialogFeedUser;
SBJSON *jsonWriter = [[SBJSON new] autorelease];
// The action links to be shown with the post in the feed
NSArray* actionLinks = [NSArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:
@"someName",@"name",@"www.validurl.com",@"link", nil], nil];
NSString *actionLinksStr = [jsonWriter stringWithObject:actionLinks];
// Dialog parameters
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
shareInfo.facebookShareText, @"name",//name is heading with link to above
@"text text text", @"caption",// caption makes text grayed out
@"more wonderful text", @"description",// block text for the share
shareInfo.shareUrlShort, @"link",//actual link
shareInfo.facebookShareImage, @"picture",//url of picture to be displayed
actionLinksStr, @"actions",
nil];
//the post's action links must be valid urls
//make post to wall feed
[_facebook dialog:@"feed"
andParams:params
andDelegate:self];
the post works if i remove the actionLinksStr from the params as the error says that the link within it is not valid. This has been working for months but just stopped when i tried it today and i cant seem to get it back working again. Has anyone any idea why this error would suddenly start happening with no change to the actual sharing code? the url im passing into the action link is definately valid. any help would be much appreciated thanks edit: just gonna flag this as a bug on facebooks dev site. see if i can get any feedback from there. still a mystery to me