🧑

GitHubのプロフィール画像を取得する

2024/07/24に公開

プロフィール画像を取得する

現在設定されているプロフィール画像を取得します。デフォルトから変更していない場合はIdenticonが取得できます。

https://github.com/soags.png
https://avatars.githubusercontent.com/u/17847282?v=4
https://avatars.githubusercontent.com/soags
  • soags = ユーザー名 (login)
  • 17847282 = ユーザーID (id)

https://github.com/soags.pnghttps://avatars.githubusercontent.com/u/17847282?v=4に自動でリダイレクトされます。

Identiconを取得するURL

Identiconを直接取得したい場合は、下記のURLで取得できます。

https://github.com/identicons/soags.png

ユーザー情報からプロフィール画像のURLを取得する

APIでユーザー情報を取得すると、avator_url から上記のプロフィール画像取得用のURLを取得できる。

https://api.github.com/users/soags
{
  "login": "soags",
  "id": 17847282,
  "node_id": "MDQ6VXNlcjE3ODQ3Mjgy",
  "avatar_url": "https://avatars.githubusercontent.com/u/17847282?v=4",
  "gravatar_id": "",
  "url": "https://api.github.com/users/soags",
  "html_url": "https://github.com/soags",
  "followers_url": "https://api.github.com/users/soags/followers",
  "following_url": "https://api.github.com/users/soags/following{/other_user}",
  "gists_url": "https://api.github.com/users/soags/gists{/gist_id}",
  "starred_url": "https://api.github.com/users/soags/starred{/owner}{/repo}",
  "subscriptions_url": "https://api.github.com/users/soags/subscriptions",
  "organizations_url": "https://api.github.com/users/soags/orgs",
  "repos_url": "https://api.github.com/users/soags/repos",
  "events_url": "https://api.github.com/users/soags/events{/privacy}",
  "received_events_url": "https://api.github.com/users/soags/received_events",
  "type": "User",
  "site_admin": false,
  "name": "soags",
  "company": null,
  "blog": "",
  "location": "Aichi, Japan",
  "email": null,
  "hireable": true,
  "bio": null,
  "twitter_username": null,
  "public_repos": 6,
  "public_gists": 3,
  "followers": 2,
  "following": 0,
  "created_at": "2016-03-15T08:56:21Z",
  "updated_at": "2024-07-24T01:31:54Z"
}
GitHubで編集を提案

Discussion