我正在尝试使用以下代码使用 Koela 发布照片,但它没有标记用户
@graph.put_picture(pic_url,{:message => msg,:tags => [{:id => "xxxxxxx"} ,{:id=>"xxxxxxx"}]})
这是 facebook 链接,但它在 PHP http://developers.facebook.com/docs/reference/api/photo/
我正在尝试使用以下代码使用 Koela 发布照片,但它没有标记用户
@graph.put_picture(pic_url,{:message => msg,:tags => [{:id => "xxxxxxx"} ,{:id=>"xxxxxxx"}]})
这是 facebook 链接,但它在 PHP http://developers.facebook.com/docs/reference/api/photo/
Koala 中没有 put_tag 函数,因此您必须使用更通用的 put_connections 函数:
@graph.put_connections(you_image_id, 'tags', {"to" => uid})
https://github.com/arsduo/koala/blob/master/lib/koala/api/graph_api.rb#L144
这是 put_picture 的文档,但我看不到它能够标记...你可以看看,我认为必须传递 x 和 y 坐标才能在图片中标记。
https://github.com/arsduo/koala/blob/master/lib/koala/api/graph_api.rb