大頭照預設大小有四種
http://graph.facebook.com/id/picture?type=small
http://graph.facebook.com/id/picture?type=square
http://graph.facebook.com/id/picture?type=large
http://graph.facebook.com/id/picture?type=normal
預設都是抓取 square, 但是不論放在手機或是網頁上~ 根本就是8bit時代的產物
所以在抓取檔案時要指定large (200x200)
手機API部分 :
在app/model/user.rb,在picture加上 .type(large)
res = RestClient.get "https://graph.facebook.com/v2.4/me", {...
Read More