1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-24 21:48:21 +01:00
phorge-phorge/src/applications/auth/provider/PhabricatorTwitterAuthProvider.php

36 lines
871 B
PHP
Raw Normal View History

<?php
final class PhabricatorTwitterAuthProvider
extends PhabricatorOAuth1AuthProvider {
public function getProviderName() {
return pht('Twitter');
}
protected function getProviderConfigurationHelp() {
$login_uri = PhabricatorEnv::getURI($this->getLoginURI());
return pht(
"To configure Twitter OAuth, create a new application here:".
"\n\n".
"https://dev.twitter.com/apps".
"\n\n".
"When creating your application, use these settings:".
"\n\n".
" - **Callback URL:** Set this to: `%s`".
"\n\n".
"After completing configuration, copy the **Consumer Key** and ".
"**Consumer Secret** to the fields above.",
$login_uri);
}
protected function newOAuthAdapter() {
return new PhutilTwitterAuthAdapter();
}
protected function getLoginIcon() {
return 'Twitter';
}
}