2012-06-29 27 views

回答

0

簽到可以通過user對象checkins連接進行檢索,還需要user_checkins許可(或friends_checkins如果您檢索朋友的簽到)。

你也HABE通過FQL訪問同一數據的能力:

SELECT coords, tagged_uids, page_id FROM checkin WHERE author_uid=me() 

你可能想也讀documentation of checkin objectdocumentation for checkin table (FQL)

+0

大家好。是使用FQL工作,通過他們的瀏覽器進行測試: SELECT coords,author_uid,tagged_uids,page_id,timestamp,message FROM checkin WHERE author_uid = me() https://developers.facebook.com/tools/explorer? FQL = SELECT%20coords%2C%20author_uid%2C%20tagged_uids%2C%20page_id%2C%20timestamp%2C%20message%20FROM%20checkin%20WHERE%20author_uid%3D%20me%28%29個 非常感謝您的幫助, Alex –

+0

@AlexPetrie,歡迎來到[so]。如果對你有幫助,請[請將答案標記爲已接受](http://meta.stackexchange.com/a/65088/176186)。 –

0

https://developers.facebook.com/docs/reference/api/checkin/

世貿場返回

包含Page id,name和loc的對象通貨膨脹;位置包括 與有關 郵政地址信息沿着特定的緯度和經度,如果有

您還可以使用:

簽到地點:https://graph.facebook.com/search?type=checkin(此請求 回報您或您的朋友的最新籤,或者檢查你的朋友已被標記的位置;目前,它不接受aq = 參數。)

我認爲第二個更多是你在找什麼。

第三種方法是使用FQL:

https://developers.facebook.com/docs/reference/fql/checkin/

+0

似乎你誤解了OP的問題,他想通過API訪問他自己的checkins。 –

+0

感謝您的這一點 - 這似乎只能返回最近可用的內容,希望能夠入住我的所有時間。有什麼想法嗎? –

相關問題