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
::fields()
There is an option to request specific set of "user fields", when working wit some of other providers.
Example:
$fbUser = Socialite::with('facebook') ->fields([ 'id', 'name', 'email', 'picture' ]) ->user(); $vkUser = $user = Socialite::with('vkontakte') ->fields([ 'photo_50', 'email' ]) ->user();
With this provider, however, this method doesn't work:
$okUser = Socialite::with('odnoklassniki') ->fields([ 'uid', 'name', 'pic50x50', 'email', 'url_profile' ]) ->user();
The error message I get:
Call to undefined method JhaoDa\SocialiteProviders\Odnoklassniki\Provider::fields()
Is t possible to add ::fields() support here?
The text was updated successfully, but these errors were encountered:
@mityukov feel free to make a pull request with this feature.
Sorry, something went wrong.
No branches or pull requests
There is an option to request specific set of "user fields", when working wit some of other providers.
Example:
With this provider, however, this method doesn't work:
The error message I get:
Is t possible to add
::fields()
support here?The text was updated successfully, but these errors were encountered: