大家。我目前正在开发一个网络应用程序。我开始在笔记本电脑上开发。然后我将笔记本电脑上的代码文件夹映射到我的电脑上。在我的笔记本电脑上,一切正常。但在PC上,我无法通过身份验证。我收到500内部服务器错误。我使用的是Oauth
,Laravel
,laravel passport
,vuejs
和m ongodb
。我目前正在远程访问mongodb服务器。
这是登录方法
methods: {
login(){
var data = {
client_id:'58a08f3588053a6d947dc902',
client_secret:'E1STUJipgmCO2h9gtkN2Vl1fTpgJCuiW2SrktshM',
grant_type:'password',
username:this.userid,
password:this.password
}
this.$http.post("http://localhost:8000/oauth/token", data)
.then(response => {
console.log(response)
})
/*
.then(function(response){
console.log(response)
})*/
}
}
谢谢