We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
5.9.1
10.0
8.2
No response
for integrate with linkedin, this package send default scopes as : r_liteprofile, r_emailaddres
both of them have been change by linked in, the correct values is : profile, openid and email
Route::get('/redirect', function () { return Socialite::driver('linkedin') ->scopes(['openid', 'profile', 'email']) ->redirect(); });
The text was updated successfully, but these errors were encountered:
same as #649
Sorry, something went wrong.
You'll need to use the open id provider: #662
No branches or pull requests
Socialite Version
5.9.1
Laravel Version
10.0
PHP Version
8.2
Database Driver & Version
No response
Description
for integrate with linkedin, this package send default scopes as : r_liteprofile, r_emailaddres
both of them have been change by linked in, the correct values is : profile, openid and email
Steps To Reproduce
Route::get('/redirect', function () {
return Socialite::driver('linkedin')
->scopes(['openid', 'profile', 'email'])
->redirect();
});
The text was updated successfully, but these errors were encountered: