Page MenuHomec4science

PhabricatorTwitterAuthProvider.php
No OneTemporary

File Metadata

Created
Mon, Dec 2, 00:55

PhabricatorTwitterAuthProvider.php

<?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';
}
}

Event Timeline