這是一個VB.NET例子 - 但是我用這個獲得獲取訪問令牌,爲用戶所有的時間,並且從來沒有收到你的迴應顯示 - 所以這可能會有所幫助?
Public Class FacebookAuthorization
Private Shared Property BaseURL As String = "https://graph.facebook.com/oauth/authorize"
Public Shared Function GetAuthUrl(ByVal appID As String, ByVal redirectUrl As String, ByVal permissions As String) As String
Return String.Format("{0}?client_id={1}&redirect_uri={2}&type=user_agent&scope={3}", BaseURL, appID, redirectUrl, permissions)
End Function
End Class
編輯:
你從這個請求後面的的access_token可以使用像這樣:
https://graph.facebook.com/me/feed?access_token=XXXXXX - 得到是你的牆/時間表
https://graph.facebook.com/me/home?access_token=XXXXXX - 得到是你自己的新聞源
你可以在這個url中檢索帶有這個標記的信息嗎? (4:30 PM)afshar:https://graph.facebook.com/SOME-ID/posts?method=GET&metadata=true&format=json&callback=___GraphExplorerAsyncCallback___&access_token= ??? – user1514512
請參閱編輯信息。 – wakurth