gnusocial.php 636 B

1234567891011121314151617
  1. <?php defined('SYSPATH') or die('No direct script access.');
  2. /**
  3. * GNU Social Config
  4. *
  5. * PHP version 5
  6. * LICENSE: This source file is subject to AGPL license
  7. * that is available through the world-wide-web at the following URI:
  8. * http://www.gnu.org/licenses/agpl.html
  9. * @author Omar Vega Ramos <ovruni@gnu.org.pe>
  10. * @copyright (c) 2012 - 2016 Omar Vega Ramos
  11. * @license http://www.gnu.org/licenses/agpl.html GNU Affero General Public License (AGPL)
  12. */
  13. $config['username'] = 'your_user';
  14. $config['password'] = 'your_password';
  15. $config['endpoint'] = 'http://your_gnu_social_instance/api/statuses/update.xml';
  16. ?>