Reputation: 7605
Is there any way I can upload a selected image to TwitPic.com and get the images page URL?
Here is the API page for TwitPic.com:
Upvotes: 1
Views: 2249
Reputation: 57188
The API indicates it returns the URI in a XML document. You can use an NSURLRequest to post the image data, and use NSXMLParser to get the resulting URL.
Upvotes: 1