We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This will always return the normal image. I expect it to return the bigger image.
bigger
client.user('eddanger').profile_image_url_https(:bigger)
The text was updated successfully, but these errors were encountered:
I can’t reproduce this issue. Please provide the following details so that I can debug it:
twitter
profile_image_url_https
Twitter::User
profile_image_url_https(:bigger)
Sorry, something went wrong.
Using twitter (4.8.0)
Using ruby (ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-darwin12.2.1])
I'm using the client with the bearer_token (possibly related to this issue, possibly not) to make the auth'd request. So I first get the bearer_token
client = Twitter::Client.new( :consumer_key => Rails.configuration.twitter_consumer_key, :consumer_secret => Rails.configuration.twitter_consumer_secret ) bearer_token = client.token
Then once I have the bearer_token
client = Twitter::Client.new( :consumer_key => Rails.configuration.twitter_consumer_key, :consumer_secret => Rails.configuration.twitter_consumer_secret, :bearer_token => Rails.configuration.twitter_bearer_token )
client.user('eddanger').profile_image_url_https # => "https://si0.twimg.com/profile_images/67759670/DSCN2136_normal.JPG" # size 48x48
client.user('eddanger').profile_image_url_https(:bigger) # => "https://si0.twimg.com/profile_images/67759670/DSCN2136_normal.JPG" # size 48x48
7376061
No branches or pull requests
This will always return the normal image. I expect it to return the
bigger
image.The text was updated successfully, but these errors were encountered: