Created
October 4, 2011 08:57
-
-
Save caefer/1261186 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$facebook = new Facebook(array('appId' => 'YOUR_APP_ID', 'secret' => 'YOUR_APP_SECRET')); | |
$note = array( | |
'subject' => 'Your new Note!', | |
'message' => '<h1>Your new Note</h1><p>This is your new note</p>', | |
); | |
$response = $facebook->api('/YOUR_USER_OR_PAGE_ID/notes', 'post', $note); | |
$response = json_decode($response); | |
echo 'your note has the id #'.$response['id']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment