0

每个人。我目前正在开发一个网络应用程序。我开始在笔记本电脑上开发。然后我将笔记本电脑上的代码文件夹映射到我的电脑上。在我的笔记本电脑上,一切正常。但是在PC上我无法通过身份验证。我收到 500 内部服务器错误。我正在使用Oauth, Laravel,laravel passportvuejsm 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)
      })*/
    }
}

谢谢

4

0 回答 0