]> git.mxchange.org Git - friendica-addons.git/commitdiff
fromgplus: Updated README
authorMichael Vogel <icarus@dabo.de>
Sun, 9 Dec 2012 21:09:22 +0000 (22:09 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 9 Dec 2012 21:09:22 +0000 (22:09 +0100)
fromgplus/README
fromgplus/fromgplus.php

index cecbb2b9d17bec1d0893e8c14685ed2319e2a5d6..db5bb38e0613c3917afe1de8b721540c0b564faa 100644 (file)
@@ -1 +1,10 @@
-This extension is a preparation of the upcoming import of items via Google+
+This extension fetches messages from a Google+ account and reshares it.
+
+You have to place the following config values in your .htconfig.php:
+
+$a->config['fromgplus']['key'] = "your key";
+$a->config['fromgplus']['poll_interval'] = 10;
+
+You need an API key for "Simple API Access". 
+
+You get it via https://code.google.com/apis/console/ and then "API Access".
index ab93b04230f8ad5ad7f1a18b6414411bf6a75047..e19a003bc8f7cc49cbc94c5ab52593ca8b3b1923 100644 (file)
@@ -1,13 +1,13 @@
 <?php
 /**
  * Name: From GPlus
- * Description: Imports posts from a Google+ account and repeats them - not working by now
+ * Description: Imports posts from a Google+ account and repeats them
  * Version: 0.1
  * Author: Michael Vogel <ike@piratenpartei.de>
  *
  */
 
-define('FACEBOOK_DEFAULT_POLL_INTERVAL', 60); // given in minutes
+define('FROMGPLUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
 
 function fromgplus_install() {
        register_hook('plugin_settings', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings');