Используемый пакет: https://github.com/coderello/laravel-passport-social-grant
Я следил за всеми ожидаемыми изменениями с помощью учебного пособия по адресу: https://medium.com/@hivokas / api-authentication-via-social -networks-for-your- laravel -application-d81cfc185e60
url:
http://myurl.com/oauth/token
output:
{
"error": "invalid_credentials",
"error_description": "The user credentials were incorrect.",
"message": "The user credentials were incorrect."
}
используется с параметром почтальон выглядит следующим образом:
grant_type' => 'social', // static 'social' value
'client_id' => $clientId, // client id
'client_secret' => $clientSecret, // client secret
'provider' => $providerName, // name of provider (e.g., 'facebook', 'google' etc.)
'access_token' => $providerAccessToken, // access token issued by specified provider
],
в чем здесь проблема?