0

我正在使用 OAuth 在 Laravel 中开发 Web API Rest,当我使用 php artisan services 时一切正常

Url: http: // localhost: 8000 / api / orders

PHP 服务器

但是当我使用 Wamp / XAMP / Laragon 并通过 Postman 访问时

Http: // localhost / codedelivery / public / api / orders

给出这个错误:

{"Error": "invalid_request", "error_description": "The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed. "}

使用 Wamp 服务器

有没有人经历过这个?你能帮我吗?

4

1 回答 1

0

我对 Apache 有一个小问题,它没有读取标头中的 Authorization 参数,但已经通过添加解决了

RewriteRule ^ - [E = HTTP_AUTHORIZATION:% {HTTP: Authorization}]

在 .htaccess 中。

于 2017-07-21T01:04:53.650 回答