スポンサーリンク

Google Social Graph APIにedoパラメータをつけて、APIを実行するとqのURLを基点にノードから外に出ているエッジの情報を返します。

http://socialgraph.apis.google.com/lookup?q=http://twitter.com/whoami&pretty=1&edo=1


twitter的にいえば、基点の人がfollowしている人の情報を返します。

nodes ->URL ->nodes_referenced


今後は逆に、ediです。
ediは、URLのノードに対して、向かっているエッジの情報を示します。
つまり、twitter的にいえば、基点の人をfollowしている人たちの情報を
返します。

http://socialgraph.apis.google.com/lookup?q=http://twitter.com/whoami&edi=1&pretty=1


{
 "canonical_mapping": {
  "http://twitter.com/whoami": "http://twitter.com/whoami"
 },
 "nodes": {
  "http://twitter.com/whoami": {
   "attributes": {
    "url": "http://twitter.com/whoami",
    "profile": "http://twitter.com/whoami",
    "rss": "http://twitter.com/statuses/user_timeline/whoami.rss",
    "atom": "http://twitter.com/statuses/user_timeline/whoami.atom"
   },
   "nodes_referenced_by": {
    "http://twitter.com/abc": {
     "types": [
      "contact"
     ]
    },
    "http://twitter.com/xyz": {
     "types": [
      "contact"
     ]
    },
    "http://www.mybloglog.com/buzz/members/whoami": {
     "types": [
      "me"
     ]
    }
   }
  }
 }
}

edoとediの両方を1にしてAPIを呼び出した場合、両方のエッジ情報を取得することができます。

http://socialgraph.apis.google.com/lookup?q=http://twitter.com/whoami&edi=1&edo=1&pretty=1


実行例は、こんな感じになります。

{
 "canonical_mapping": {
  "http://twitter.com/whoami": "http://twitter.com/whoami"
 },
 "nodes": {
  "http://twitter.com/whoami": {
   "attributes": {
    "url": "http://twitter.com/whoami",
    "profile": "http://twitter.com/whoami",
    "rss": "http://twitter.com/statuses/user_timeline/whoami.rss",
    "atom": "http://twitter.com/statuses/user_timeline/whoami.atom"
   },
   "nodes_referenced": {
    "http://whoami/": {
     "types": [
      "me"
     ]
    },
    "http://twitter.com/abc": {
     "types": [
      "contact"
     ]
    },
    "http://twitter.com/def": {
     "types": [
      "contact"
     ]
    },
   },
   "nodes_referenced_by": {
    "http://twitter.com/abc": {
     "types": [
      "contact"
     ]
    },
    "http://twitter.com/def": {
     "types": [
      "contact"
     ]
    },
    "http://www.mybloglog.com/buzz/members/whoami": {
     "types": [
      "me"
     ]
    }
   }
  }
 }
}

Google Social Graph APIとは その1[2008-06-08-1]
Google Social Graph APIとは その2[2008-06-09-2]

スポンサーリンク
スポンサーリンク
 
いつもシェア、ありがとうございます!


もっと情報を探しませんか?

関連記事

最近の記事

人気のページ

スポンサーリンク
 

過去ログ

2020 : 01 02 03 04 05 06 07 08 09 10 11 12
2019 : 01 02 03 04 05 06 07 08 09 10 11 12
2018 : 01 02 03 04 05 06 07 08 09 10 11 12
2017 : 01 02 03 04 05 06 07 08 09 10 11 12
2016 : 01 02 03 04 05 06 07 08 09 10 11 12
2015 : 01 02 03 04 05 06 07 08 09 10 11 12
2014 : 01 02 03 04 05 06 07 08 09 10 11 12
2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
2004 : 01 02 03 04 05 06 07 08 09 10 11 12
2003 : 01 02 03 04 05 06 07 08 09 10 11 12

サイト

Vim入門

C言語入門

C++入門

JavaScript/Node.js入門

Python入門

FreeBSD入門

Ubuntu入門

セキュリティ入門

パソコン自作入門

ブログ

トップ


プライバシーポリシー