2013-10-15 57 views

回答

2

如果你知道你想要的位置ID,你應該能夠使用

https://api.instagram.com/v1/locations/{location-ID}/media/popular?MIN_TIMESTAMP={UNIX timestamp for beginning of day}&access_token={access token} 

得到普及照片通過位置,您可以使用位置/搜索查詢搜索位置ID,像這樣:

https://api.instagram.com/v1/locations/search?lat={latitude}&lng={longitude}&access_token={access token} 

在這兩個URL中,{}代表您需要定義的變量。

參考: http://instagram.com/developer/endpoints/locations/

+0

謝謝你的答案。 我得到了GPS座標(lat-long),把它們放在了url中,而不是{latitude}和{longitude}給了我一個位置列表。 我拿了其中一個位置ID,併爲昨天的午夜添加了UNIX時間戳。我也生成了一個訪問令牌。 結果是這個網址: https://api.instagram.com/v1/locations/2608967/media/popular?MIN_TIMESTAMP=1381813200&access_token=25868257.761450e.aeec91b47540453a9024d7c40ce5eda1# 這給了我一個「找不到網頁」上instagram ... – Giveny

+0

嗨@Giveny。你成功了嗎?我需要同樣的東西。 – AshKan