Domness
Domness

Reputation: 7605

iPhone SDK: Uploading pictures to TwitPic.com

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:

http://twitpic.com/api.do

Upvotes: 1

Views: 2249

Answers (1)

Jesse Rusak
Jesse Rusak

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

Related Questions