doco on state of FB connector

This commit is contained in:
Friendika 2010-12-27 23:36:19 -08:00
parent caf93fffac
commit 76d92d3f62
1 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,15 @@
<?php <?php
/**
* This module needs a lot of work.
*
* - setting/storing preferences
* - documentation on how to obtain FB API keys for your site
* - ensuring a valid FB login session
* - requesting permissions within the FB login session to post on your behalf until permission revoked.
*
*/
function facebook_install() { function facebook_install() {
register_hook('post_local_end', 'addon/facebook/facebook.php', 'facebook_post_hook'); register_hook('post_local_end', 'addon/facebook/facebook.php', 'facebook_post_hook');
@ -38,7 +48,7 @@ function facebook_post_hook(&$a,&$b) {
'cookie' => true 'cookie' => true
)); ));
try { try {
$statusUpdate = $facebook->api('/me/feed', 'post', array('message'=> bbcode($datarray['body']), 'cb' => '')); $statusUpdate = $facebook->api('/me/feed', 'post', array('message'=> bbcode($b['body']), 'cb' => ''));
} }
catch (FacebookApiException $e) { catch (FacebookApiException $e) {
notice( t('Facebook status update failed.') . EOL); notice( t('Facebook status update failed.') . EOL);