user1590031
user1590031

Reputation: 308

Twitter - How to fetch user background image?

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

Answers (1)

max_
max_

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

Related Questions