1
2

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 3 years have passed since last update.

Gravatarの画像をメールアドレスから取得する方法

1
Last updated at Posted at 2019-08-14

Gravatarの画像をメールアドレスから取得する方法

メールアドレスのmd5ハッシュ値を求め、
https://www.gravatar.com/avatar/[求めたハッシュ値]
にアクセスすることでメールアドレスに登録された画像が取得できます。

Rubyの場合、
require 'digest/md5'して、
Digest::MD5.hexdigest(email.downcase)でハッシュ値が求まります。
この記事が参考になれば幸いです。

終わりに

私は現在、Web3のサービスの開発をしています。詳しくはこちらの記事をご覧下さい。
無料でイーサリアムが当たる、Web3時代の寄付サイトを作った話

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?