我正在使用 ruby Koala,并试图找到如何通过 Facebook 图表编辑现有对象的属性。
我在 Facebook 文档中能找到的只有:
https://developers.facebook.com/docs/opengraph/objects/#update
但没有发现它有帮助。
谢谢!莫兹利。
我正在使用 ruby Koala,并试图找到如何通过 Facebook 图表编辑现有对象的属性。
我在 Facebook 文档中能找到的只有:
https://developers.facebook.com/docs/opengraph/objects/#update
但没有发现它有帮助。
谢谢!莫兹利。
也许你可以#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
虽然这是一个老问题,但应该如何做:
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