2012-12-11 420 views
2

我一直在試圖進行以下Facebook的圖形API調用...麻煩與Facebook圖形API

https://graph.facebook.com/me&access_token=mytokenhere

我一直在此完全相同呼籲幾個月了,沒有問題。我收到以下響應回來...

{ 
    "error": { 
     "message": "(#803) Some of the aliases you requested do not exist: me&access_token=mytokenhere", 
     "type": "OAuthException", 
     "code": 803 
    } 
} 

顯然mytokenhere替換我的實際原因,沒有通過文字「mytokenhere」。

任何幫助,將不勝感激!

回答

2

它看起來像你沒有正確調用qs參數。

試試這個:

https://graph.facebook.com/me?access_token=mytokenhere

+0

謝謝你,看起來像解決我的問題。我不禁想知道爲什麼它一直在努力!哦,誰在乎,謝謝你! –

+0

我有同樣的問題(查詢錯誤:有'... /我&'而不是'... /我?'),但它很奇怪,因爲它的工作方式差不多一年:) – kovpack