我正在使用 java (android) 开发身份验证(登录和注册)应用程序。
现在,为了与数据库进行通信,我被要求使用 Laravel Web 应用程序来实现它。我配置了所有内容(Laravel护照)并使用邮递员对其进行了测试。
我在 Heroku 上部署了网站并用它配置了 pgsql。然后我在邮递员中复制了请求并更改了 URL。
问题是它正在数据库中添加新用户,但它返回 500 内部服务器错误,没有访问令牌
postman response when adding the user:
the new user in the db:
the code responsible for adding users (same code is still working on localhost)
MM们