Hey Aman,
I'm suddenly having a bizarre problem when trying to publish a feed with facebook connect; it used to work but now when I hit my button that tells it to publish a feed, the facebook popup window comes up as usual, the activity meter spins for a second as usual...but then the activity meter disappears and the white popup just stays there forever...feed never gets published. Did something change in FB Connect recently or something? It's possible I somehow changed something to screw it up. It's worth noting that I can do a regular status update just fine. Here's some sample relevant code:
Code:
//this works
[fbAgent setStatus:[NSString stringWithFormat: @"%@", rootViewController.mainView.myLabel.text]];
//wheras this does not anymore..
[fbAgent publishFeedWithName:rootViewController.mainView.myLabel.text
captionText:@"Some Caption"
imageurl:@"http://www.myserver.com/someImage.jpg"
linkurl:@"http://www.google.com"
actionLabel:@"Please Work"
actionText:@"Damn!"
actionLink:@"http://www.google.com"];
THis is the last thing standing in my way of release...please help; thanks!