我正在尝试使用以下 ruby on rails 代码在墙上设置的操作。但是当我看到那些墙贴时,这些动作并没有出现在那里。它们也不会出现在图形 API 资源管理器中。我正在关注墙贴图 api 文档,但这里可能遗漏了一些东西。
actionArray = Array.new
actionArray << {"name" => "custom1", "link" => myUrl}
actionArray << {"name" => "custom2", "link" => myUrl}
postId = @graph.put_wall_post("some text", {"name" => "some text",
"link" => myUrl,
"caption" => "caption",
"description" => "description",
"picture" => pictureUrl,
"actions" => actionArray})
想法?谢谢