我想連接使用vue和laravel護照生成laravel用戶API,但我不斷收到我的頭文件中的授權錯誤。這ismy代碼Laravel Passport 401使用Apache和Vue的未經授權的錯誤
<script>
import Hello from './components/Hello'
export default {
name: 'app',
components: {
Hello
},
created() {
const postData = {
grant_type: 'password',
client_id: 2,
client_secret: 'sXdg5nOO4UU2muiHaQnTq4hDQjyj17Kd9AeKuNEx',
username: '[email protected]',
password: 'password',
scope: ''
}
this.$http.post('http://localhost:8000/oauth/token', postData)
.then(response => {
console.log(response)
const header = {
'Accept': 'application/json',
'Authorization': ~'Bearer ' + response.body.access_token
}
this.$http.get('http://localhost:8000/api/user', {headers: header})
.then(response => {
console.log(response)
})
})
}
}
</script>
我已經做了研究和回答最多建議修改Apache的配置文件或.htaccess文件,但也似乎並沒有在我結束工作。任何幫助將不勝感激:-)
中間件處理程序的名稱是什麼? – user3098538
這是我自己的中間件伴侶 – channasmcs