有人可以告訴我「如何獲得」或「什麼是」在院子裏的文檔http://rubydoc.info/github/Instagram/instagram-ruby-gem給出的紅寶石instagram api方法location(id), location_recent_media(id,options{}), media_item(id), media_likes(id)
等使用的'id'參數?我正在使用rails,並且使用gem安裝api。如何從instagram api獲取'id'參數?
1
A
回答
1
你可以看到如何在這裏使用API https://github.com/Instagram/instagram-ruby-gem的例子,看看代碼我會說,ID是依賴於你正在查詢,如果你使用的位置(ID)它會是位置的ID。現在,要從「真實世界」位置獲取該ID,我相信您可以使用location_search(經度,緯度),這將爲您提供一個數組,其中包含所有與該座標接近的位置,例如(來自代碼文檔):
Instagram.location_search("37.7808851", "-122.3948632")
這會給你一個陣列周圍的位置37.7808851,-122.3948632(164 S公園,SF,CA美國)。
然後你可以使用IDS進行陣列與位置(ID),e.g:
mylocations = Instagram.location_search("37.7808851", "-122.3948632")
Instagram.location(mylocations.first)
希望它能幫助。
相關問題
- 1. Instagram API如何獲取用戶ID?
- 2. Api Instagram,獲取任何媒體的新評論(自參數日期或ID)
- 3. Instagram API獲取max_tag_id
- 4. 如何獲取Instagram API訪問令牌
- 5. 如何使用Instagram API獲取圖像
- 6. Instagram API訂閱,如何獲取帖子?
- 7. 獲取媒體ID的Instagram
- 8. 從instagram api獲取位置媒體
- 9. 使用BitMaps從Instagram獲取圖像API
- 10. 從Facebook獲取Instagram帳戶頁面API
- 11. 如何從OpenTracing API獲取跟蹤ID?
- 12. instagram api評論獲取
- 13. 獲取評論由instagram api
- 14. 從Instagram的API API提取用戶媒體沒有用戶ID
- 15. Instagram API使用PHP獲取JSON數據
- 16. 如何從instagram API獲取圖片url Json結果
- 17. 我如何使用ruby從Instagram獲取JSON API
- 18. 如何從Android上的Instagram API獲取圖片拍攝日期?
- 19. 如何從我自己的Instagram API獲取所有媒體?
- 20. 如何從Instagram API獲取裁剪後的圖像?
- 21. 如何從API獲取Instagram上的用戶圖像
- 22. 如何通過API獲取Instagram照片上的股票數量?
- 23. Instagram的API如何獲得最好的照片由用戶ID
- 24. 如何從Instagram用戶名中獲取Instagram電子郵件?
- 25. 如何獲取Instagram令牌?
- 26. Rest api如何獲取參數?
- 27. Instagram API通過逗號分隔ID獲取批量對象
- 28. 從參考ID獲取對象Id
- 29. 從Instagram的API獲取JSON數據和特定的關鍵字
- 30. eBay API,如何從SiteCodeType獲取數字網站ID
[如何獲取用於訪問instagram中用戶詳細信息的'id'](http://stackoverflow.com/questions/8800459/how-to-get-the-id-for-accessing-user-詳細功能於Instagram的) – 2012-01-10 12:38:30