TwitterOAuth2.php in Tweet Feed 4.x
Same filename and directory in other branches
Namespace
Drupal\tweet_feed\ControllerFile
src/Controller/TwitterOAuth2.phpView source
<?php
namespace Drupal\tweet_feed\Controller;
use Abraham\TwitterOAuth\TwitterOAuth;
class TwitterOAuth2 extends TwitterOAuth {
const API_VERSION = '2';
protected function getUrl(string $host, string $path) {
return sprintf('%s/%s/%s.json', $host, self::API_VERSION, $path);
}
}
Classes
Name | Description |
---|---|
TwitterOAuth2 |