Facebook api open graph发布动作语法错误

时间:2012-09-28 13:47:19

标签: php facebook opengraph facebook-apps

我有点失落。

我刚在facebook中创建了一个动作,我正试图在我的应用程序中发布它。

facebook给了我这段代码:

curl -F 'access_token=xxx' \
     -F 'gag=http://samples.ogp.me/436800766355204' \
        'https://graph.facebook.com/me/xxx:laugh_at'

当我把它放在我的php脚本中时,我得到Parse错误:语法错误,意外T_CONSTANT_ENCAPSED_STRING

1 个答案:

答案 0 :(得分:1)

那不是PHP代码。这意味着要粘贴到命令行中 我建议使用PHP SDK,但我想你可以这样做:

<?php
    exec("curl -F 'access_token=xxx' -F 'gag=http://samples.ogp.me/436800766355204' 'https://graph.facebook.com/me/xxx:laugh_at'");
?>