mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 02:43:41 +00:00
Quit if twitter addon is not configured
This commit is contained in:
parent
d67ac814e7
commit
633c54d642
1 changed files with 6 additions and 0 deletions
|
@ -158,6 +158,12 @@ function twitter_follow(App $a, &$contact)
|
||||||
$otoken = PConfig::get($uid, 'twitter', 'oauthtoken');
|
$otoken = PConfig::get($uid, 'twitter', 'oauthtoken');
|
||||||
$osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
|
$osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
|
||||||
|
|
||||||
|
// If the addon is not configured (general or for this user) quit here
|
||||||
|
if (empty($ckey) || empty($csecret) || empty($otoken) || empty($osecret)) {
|
||||||
|
$contact = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
|
$connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
|
||||||
$connection->post('friendships/create', ['screen_name' => $nickname]);
|
$connection->post('friendships/create', ['screen_name' => $nickname]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue