0

我正在尝试将 image_size 应用于omniauth-google-oauth2,但我尝试的一切都没有奏效。

我的设计.rb

config.omniauth :google_oauth2, google_client_id, google_client_secret, {image_aspect_ratio: "square", image_size: 100}

我正在使用我的 application_helper 来显示图像:

module ApplicationHelper
  def avatar_url(user)
    user.image
  end
end

如果我检查 image_url 它仍然显示https://lh3.googleusercontent.com/a-/AOh14Gg9KNrUy_97f3wDhevAJGE52nT8Y6ho48Uo9vJwHw大小没有任何变化

我也试过auth.info.image.sub('?sz=32','?sz=100')了,但是没有用。

4

0 回答 0