1

たとえば、 user: のdjango場合、github-api を介して取得したい URL はありません

https://github.com/django

しかし

http://www.djangoproject.com/

以下の赤い楕円のように:

ここに画像の説明を入力

ユーザー検索 API は、応答でこの URL を返しません。

4

1 に答える 1

2

サービスから返されるデータは次のようになります。

https://api.github.com/users/django

{
  "public_gists": 0,
  "type": "Organization",
  "followers": 240,
  "login": "django",
  "created_at": "2008-10-06T19:43:18Z",
  "html_url": "https://github.com/django",
  "avatar_url": "https://secure.gravatar.com/avatar/fd542381031aa84dca86628ece84fc07?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-org-420.png",
  "company": null,
  "email": null,
  "blog": "http://www.djangoproject.com/",
  "following": 0,
  "name": "Django",
  "location": "Internet",
  "url": "https://api.github.com/orgs/django",
  "id": 27804,
  "public_repos": 49
} 

ご覧のとおり、その URL はブログ フィールドにあります。

于 2012-10-24T00:21:05.137 に答える