(Note: I've looked all over for this, and there are tons of examples for how to post a URL-to-image via dialog, and a few for how to post image-data direct to photo album, but neither of those are what I'm trying to do.)
I can post an image that's stored on the web easily enough with code similar to this:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"This is what I say about kittens!", @"message",
@"Kittens!", @"name",
@"I'm feeling fuzzy", @"caption",
@"You, too, can feel fuzzy, with FuzzyKittenâ„¢", @"description",
@"http://example.com/fuzzykitten.html", @"link",
@"http://placekitten.com/200/150", @"picture",
nil];
[facebook dialog: @"feed"
andParams: params
andDelegate: self];
And everything works fine. The problem is, I'd like to replace:
@"http://placekitten.com/200/150", @"picture",
with something along the lines of:
[UIImage imageNamed: @"myImage.png"], @"picture",
which, of course, isn't right. So my question is: If I have an image in UIImage form, how do I load that into the parameters dictionary to pass to the dialog method?
Thanks!
EDIT: This is a client iPhone app for which there is no server so, while uploading the image to FB as part-1 of a 2-part process is fine, I'm now not seeing how to find the uploaded image's URL. Thanks again!
