Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced endpoint from Twitter's to X's #1234

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/TwitterOAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
*/
class TwitterOAuth extends Config
{
private const API_HOST = 'https://api.twitter.com';
private const UPLOAD_HOST = 'https://upload.twitter.com';
private const API_HOST = 'https://api.x.com';
private const UPLOAD_HOST = 'https://upload.x.com';

/** @var Response details about the result of the last request */
private ?Response $response = null;
Expand Down