Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何通过instagram API 的方法 id访问用户信息或通过访问他/她的位置?(Hashie::Mash)user(id)(Hashie::Mash)location(id)
id
(Hashie::Mash)user(id)
(Hashie::Mash)location(id)
我正在为我的项目使用 Rails。
您可以搜索用户以获取他/她的 id,例如:
shaynesids = Instagram.user_search("Shayne Sweeney")
这将为您提供与 Shayne Sweeny 匹配的用户数组中的所有 id(希望只有一个),然后您可以将其与 user(id) 一起使用,如下所示:
myuser = Instagram.user(shaynesids.first)
注意:在这里,我假设搜索将返回至少一个结果,您需要在代码中小心处理错误,因为它可能返回一个空数组。