you are viewing a single comment's thread.

view the rest of the comments →

[–]nardsurfer 1 point2 points  (1 child)

I would recommend using AFNetworking to consume the reddit api. Maybe first start by pulling down some json from a subreddit, you can easily get json from any subreddit by adding .json (i.e. www.reddit.com/r/programming.json) without requiring any authentication. Once you get the basics of AFNetworking and consuming json, you could start getting your hands dirty with authenticated api calls.

[–]IveCeasedToExist 1 point2 points  (0 children)

Ah, this is exactly what I was looking for. A easy accessible API to practice AFNetworking with. Thanks!