Я использую laravel паспорт для своего API и в любое время, когда я захожу по этой ссылке на Почтальона, я получаю эту ошибку
{
"error": "unsupported_grant_type",
"error_description": "The authorization grant type is not supported by the authorization server.",
"hint": "Check that all required parameters have been provided",
"message": "The authorization grant type is not supported by the authorization server."
}
Тем временем я пытаюсь использовать его с Vuejs, но я получаю эту ошибку в моей консоли я получаю эту ошибку
Access to XMLHttpRequest at 'http://localhost:8000/oauth/token' from origin 'http://localhost:8080' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
vue-resource.esm.js?28dd:1082 POST http://localhost:8000/oauth/token net::ERR_FAILED
это в моем Vuejs проекте
export default {
data(){
return {
email: '',
password: ''
}
},
methods: {
login () {
var data = {
client_id: 3,
client_secret: 'prOyqMsTJtfjKK8VYGUBgovTWOs8wAQ0DJXJj6Z0',
grant_type: 'password',
email: this.email,
password: this.password,
scope: "*"
}
this.$http.post("http://localhost:8000/oauth/token", data)
.then(response => {
console.log(response)
})
/*
.then(function (response) {
console.log(response)
})
*/
}
}
}