2013-03-14 45 views
-2

我如何在Facebook上獲得訂單詳情。當我發送GET https://graph.facebook.com/[order_id]顯示以下錯誤:正在檢索facebook訂單的詳情

{ 
"error": { 
    "message": "An access token is required to request this resource.", 
    "type": "OAuthException", 
    "code": 104 
} 
} 

回答

1

就像它在你需要有一個訪問令牌錯誤Code的提及。訪問令牌通過OAuth生成。如果您生成的訂單已經生成訪問令牌。你只需要將它與Graph API調用一起傳遞。

教程生成訪問令牌:http://developers.facebook.com/docs/howtos/login/server-side-login/

不同的是,訂單需要使用應用程序的訪問令牌,而不是用戶的訪問令牌。 A related question

+0

https://graph.facebook.com/[order_id]?access_token=[token_here]現在我得到以下錯誤:'{ 「error」:{ 「message」:「(#15)此方法必須是「, 」type「:」OAuthException「, 」code「:15 } }' – user1871640 2013-03-14 05:33:46

+0

您可以發送一些代碼示例...我是Facebook開發新手 – user1871640 2013-03-14 05:35:47

+0

我更新了我的答案與[這個相關的問題](http://stackoverflow.com/questions/9814517/this-method-must-be-called-with-an-app-access-token)。 – iDev247 2013-03-14 05:43:06

相關問題