Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am a little lost.

I just created an action in facebook and I am trying to publish it in my app.

facebook gave me this code:

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

When I put that in my php script I get Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING

share|improve this question
1  
this is not PHP code. It's a shell command. – Gordon Sep 28 '12 at 13:58

closed as not a real question by Gordon, vascowhite, PeeHaa 埽, Jocelyn, Eitan T Sep 28 '12 at 21:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

That's not PHP-code. It's meant to be pasted into a command line.
I recommend using the PHP SDK, but I suppose you could do it like this:

<?php
    exec("curl -F 'access_token=xxx' -F 'gag=http://samples.ogp.me/436800766355204' 'https://graph.facebook.com/me/xxx:laugh_at'");
?>
share|improve this answer
Thanks! will try – Chris Sep 29 '12 at 1:31

Not the answer you're looking for? Browse other questions tagged or ask your own question.