]> git.mxchange.org Git - friendica.git/commitdiff
doco on state of FB connector
authorFriendika <info@friendika.com>
Tue, 28 Dec 2010 07:36:19 +0000 (23:36 -0800)
committerFriendika <info@friendika.com>
Tue, 28 Dec 2010 07:36:19 +0000 (23:36 -0800)
addon/facebook/facebook.php

index df2f86d3a96bf145c048aed35baa46352389a11c..fbe4b31e6732557c666bb56607ea36180c008097 100644 (file)
@@ -1,5 +1,15 @@
 <?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() {
        register_hook('post_local_end', 'addon/facebook/facebook.php', 'facebook_post_hook');
@@ -38,7 +48,7 @@ function facebook_post_hook(&$a,&$b) {
                                        'cookie' => true
                                ));                     
                                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) {
                                        notice( t('Facebook status update failed.') . EOL);