3

我正在使用 ruby​​ Koala,并试图找到如何通过 Facebook 图表编辑现有对象的属性。

我在 Facebook 文档中能找到的只有:

https://developers.facebook.com/docs/opengraph/objects/#update

但没有发现它有帮助。

谢谢!莫兹利。

4

2 回答 2

1

也许你可以#graph_call使用Koala::Facebook::API? 我让它用于更新页面事件,例如:

graph.graph_call("/#{some_id}", hash_of_attributes_to_change, 'post')

正如 Facebook 文档中所建议的那样:http: //developers.facebook.com/docs/reference/api/page/#events

于 2012-10-24T12:03:22.680 回答
0

虽然这是一个老问题,但应该如何做:

graph = Koala::Facebook::API.new oauth_access_token
response = graph.put_connections(object_id, path, params)
# check the response
response.is_a?(Hash) && response["success"] == true
于 2015-10-28T13:06:38.043 回答