1
私はウォールポストにアプリ固有のアクションを投稿しようとしてきましたが、何も役に立たないようです。私は間違って何をしていますか?Facebook GraphAPIウォールポストのアプリケーションアクションが動作しない
oauth = Koala::Facebook::OAuth.new(CLIENT_ID, CLIENT_SECRET, "http://myurl.com/fb_auth")
token = oauth.get_access_token(params[:code])
graph = Koala::Facebook::API.new token
p graph.put_wall_post("explodingdog!", {
:link => "http://youtube.com/",
:caption => "Youtube",
:actions => [{:name => "Share", :link => "http://google.com"}]
})