tags:

views:

95

answers:

1

Can anybody help me with a good tutorial that uses the smugmug api for the iPhone.

I have searched a lot but could not get.

Thanks, Madhup

+1  A: 

SmugMug uses a RESTful API (I'd recommend you use JSON rather than xml since it's easier to work with in objc): http://wiki.smugmug.net/display/SmugMug/API

so you can use any tutorial that shows how to use REST on the iphone.

this looks promising: http://blog.timeister.com/2009/08/14/objective-c-http-post-get-data/

Oren Mazor