如何在 Rails 中处理来自 facebook graph api 的数据

发布于 2024-11-05 10:22:34 字数 388 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉溺在你眼里的海 2024-11-12 10:22:34

它是一个 Hash 对象的数组。

@fb.first["name"]

您必须获取数组的第一个(仅在本例中)对象,然后从中获取“name”键的值。

It is an array of Hash objects.

@fb.first["name"]

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文