Get Twitter profile image with username or id with V1.1
Solution
Before we were able to access the the user's profile image without authentication using the twitter version 1 api.
Now that this has been deprecated, we much use /1.1/users/show.json to pull the profile image with authentication information.
Problem
Is there a a predictable url to retrieve a user's profile images either by username or id? ...similar to google or facebook: ``` "https://graph.facebook.com/#{FACEBOOK ID}/picture" "https://profiles.google.com/s2/photos/profile/#{GOOGLE ID}" ``` I found this https://dev.twitter.com/docs/user-profile-images-and-banners but it looks like I'll have to do a whole separate request just to get the profile image.