https://github.com/socialiteproviders/twitter
[READ ONLY] Subtree split of the SocialiteProviders/Twitter Provider (see SocialiteProviders/Providers)
https://github.com/socialiteproviders/twitter
laravel oauth oauth1 oauth2 social-media socialite socialite-providers
Last synced: 3 months ago
JSON representation
[READ ONLY] Subtree split of the SocialiteProviders/Twitter Provider (see SocialiteProviders/Providers)
- Host: GitHub
- URL: https://github.com/socialiteproviders/twitter
- Owner: SocialiteProviders
- Created: 2015-07-08T16:12:57.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-26T21:43:04.000Z (about 1 year ago)
- Last Synced: 2025-06-18T23:04:07.126Z (4 months ago)
- Topics: laravel, oauth, oauth1, oauth2, social-media, socialite, socialite-providers
- Language: PHP
- Homepage: https://socialiteproviders.com/Twitter/
- Size: 28.3 KB
- Stars: 25
- Watchers: 3
- Forks: 22
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```bash
composer require socialiteproviders/twitter
```## Installation & Basic Usage
Please see the [Base Installation Guide](https://socialiteproviders.com/usage/), then follow the provider specific instructions below.
### Add configuration to `config/services.php`
```php
'twitter' => [
'client_id' => env('TWITTER_CLIENT_ID'),
'client_secret' => env('TWITTER_CLIENT_SECRET'),
'redirect' => env('TWITTER_REDIRECT_URI')
],
```### Enable Sign in With Twitter
You will need to enable **3-legged OAuth** in the [Twitter Developers Dashboard](https://developer.twitter.com/en/apps). Make sure to also add your callback URL.
### Add provider event listener
#### Laravel 11+
In Laravel 11, the default `EventServiceProvider` provider was removed. Instead, add the listener using the `listen` method on the `Event` facade, in your `AppServiceProvider` `boot` method.
* Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.
```php
Event::listen(function (\SocialiteProviders\Manager\SocialiteWasCalled $event) {
$event->extendSocialite('twitter', \SocialiteProviders\Twitter\Provider::class, \SocialiteProviders\Twitter\Server::class);
});
```Laravel 10 or below
Configure the package's listener to listen for `SocialiteWasCalled` events.
Add the event to your `listen[]` array in `app/Providers/EventServiceProvider`. See the [Base Installation Guide](https://socialiteproviders.com/usage/) for detailed instructions.
```php
protected $listen = [
\SocialiteProviders\Manager\SocialiteWasCalled::class => [
// ... other providers
\SocialiteProviders\Twitter\TwitterExtendSocialite::class.'@handle',
],
];
```### Usage
You should now be able to use the provider like you would regularly use Socialite (assuming you have the facade installed):
```php
return Socialite::driver('twitter')->redirect();
```### Returned User fields
- ``id``
- ``nickname``
- ``name``
- ``email``
- ``avatar``