如何在 Rails 中处理来自 facebook graph api 的数据
我正在使用 Koala gem 访问 facebook graph api。
当我拨打电话时,我得到:
<%= @fb.inspect %>
输出:
[{"name"=>"Bob Jones", "id"=>"13223123112323"}]
如何访问姓名?
@fb.id works for id but
@fb.name does not work?
错误:
undefined method `name' for [{.....
想法?谢谢
I'm using the Koala gem to access the facebook graph api.
When I make a call I get back:
<%= @fb.inspect %>
Output:
[{"name"=>"Bob Jones", "id"=>"13223123112323"}]
How do I access name?
@fb.id works for id but
@fb.name does not work?
Error:
undefined method `name' for [{.....
Ideas? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是一个 Hash 对象的数组。
您必须获取数组的第一个(仅在本例中)对象,然后从中获取“name”键的值。
It is an array of Hash objects.
You must get the first (in this case only) object for the array, and then get the value for the "name" key out from it.