我陷入了这个问题但是我无法解决这个问题我已经做了两个api调用,一个用于获取mailchimp列表,另一个用于获取aweber列表,我使用的是cors中间件包名称
"barryvdh/laravel-cors": "^0.11.0",
我已经在我的kernel.php中应用了这个中间件我完全得到了mailchimp的列表,但是我无法获得aweber的列表,这显示了我的错误
Origin 'http://localhost:8000' is therefore not allowed access.
我有两个不同的服务器URL,一个用于流明加载视图
http://localhost:8000
和其他api电话
http://127.0.0.1:8000
我的一个api工作正常,这是获取所有mailchimp列表和响应是:
{id: "02afa1f620", name: "Shahzad Hussain"}
{id: "04b12c2f30", name: "Test List"}
{id: "1ccb1fa002", name: "My API"}
{id: "25160f3162", name: "Vaival Newsletter"}
{id: "5b6a0a2a75", name: "Mailchimp List"}
{id: "9a308b9f79", name: "spikes-sales"}
{id: "9a377b4f6d", name: "Pakistan"}
{id: "e21463df57", name: "Today News"}
但是当我想获得aweber列表时,这会显示错误
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8000' is therefore not allowed access.
我的api来电网址为http://127.0.0.1:8000,而流明中的观看次数为:http://localhost:8000
Cors middlwares已应用,但它不适用于mailchimp列表,而不适用于awebers列表。
任何帮助都将受到高度赞赏: