17 lines
524 B
PHP
17 lines
524 B
PHP
<?php
|
|
|
|
// Warning: Don't change this file! It only holds the default config values for this addon.
|
|
// Instead overwrite these config values in config/addon.config.php in your Friendica directory
|
|
|
|
return [
|
|
'twitter' => [
|
|
// consumerkey (String)
|
|
// OAuth Consumer Key provided by Twitter on registering an app at https://twitter.com/apps
|
|
'consumerkey' => '',
|
|
|
|
// consumersecret (String)
|
|
// OAuth Consumer Secret provided by Twitter on registering an app at https://twitter.com/apps
|
|
'consumersecret' => '',
|
|
],
|
|
];
|