5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

FacebookのGraphAPIからユーザのアイコン画像にパラメータを付与すると捗る話

Posted at

Facebookなどでユーザのアイコンを表示したいときによく

<img src="http://graph.facebook.com/asonas.P/picture">

こんなふうにやりますよね。
このAPIにはwidthheightというパラメータを付与できて

<img src="http://graph.facebook.com/asonas.P/picture?width=500&height=500">
<img src="http://graph.facebook.com/asonas.P/picture?type=square">

とかできる。でかい。 四角い。便利。
ひとつのページにユーザのアイコンを大量に並べるときとかは画像サイズを小さくして読み込みを早くなったり、UIに合わせて適切なサイズにしておくとhtmlやcssで画像を無理やりリサイズすることもなくなるし、便利。

他にもパラメータがあるのでドキュメントを読みましょう。
https://developers.facebook.com/docs/graph-api/reference/user/picture/

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?