Reputation: 308
I'm using Twitter in my iPhone app (ios 4 so not the built in framework..)
I searched the Twitter API docs, but I can't find, how do I get the user's background image?
Upvotes: 0
Views: 776
Reputation: 24521
Send a GET request to the following url and parse the JSON. You are looking for the profile_background_image_url
entity.
https://api.twitter.com/1/users/show.json?screen_name=__some_username__&include_entities=true
More info here: https://dev.twitter.com/docs/api/1/get/users/show
Upvotes: 1