0

Facebook Graph APIはFlickrAPIのようなReflectionを提供しますか?

たとえば、Flickrは、flickr.urls.lookupUserメソッドに関する次の反射情報を提供します。

{ "method": { "name": "flickr.urls.lookupUser", "needslogin": 0, "needssigning": 0, "requiredperms": 0, 
    "description": { "_content": "Returns a user NSID, given the url to a user's photos or profile." }, 
    "response": { "_content": "<user id=\"12037949632@N01\">\r\n    <username>Stewart<\/username> \r\n<\/user>" } }, "arguments": { 
    "argument": [
      { "name": "api_key", "optional": 0, "_content": "Your API application key. <a href=\"\/services\/api\/misc.api_keys.html\">See here<\/a> for more details." },
      { "name": "url", "optional": 0, "_content": "The url to the user's profile or photos page." }
    ] }...
4

1 に答える 1

4

プログラムでドキュメントを取得するのに最も近い方法はmetadata=1、呼び出しでパラメーターを使用することです。metadataこれは、そのオブジェクトの説明に沿って、オブジェクトが持つconnectionsオブジェクト (別名 - 追加のエンドポイント)を返します。fields

例を次に示します。

GET /me?metadata=1
于 2013-03-21T20:12:04.883 に答える