编程语言
首页 > 编程语言> > php-卷曲到Laravel导致重定向

php-卷曲到Laravel导致重定向

作者:互联网

当我向Laravel路由发出cURL请求时,它不仅将我的内容重定向回首页,而且还返回了HTML,而不仅仅是返回流程的内容

<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="refresh" content="1;url=http://erm.gratuz.net.com/api/requesthandler" />
  <title>Redirecting to http://erm.gratuz.net.com/api/requesthandler</title>
 </head>
 <body>
        Redirecting to <a href="http://erm.gratuz.net.com/api/requesthandler">http://erm.gratuz.net.com/api/requesthandler</a>.
 </body>
</html>

我的cURL请求如下:

$url =  "http://erm.gratuz.net.com/api/requesthandler/";
$session = curl_init( $url );
curl_setopt( $session, CURLOPT_HEADER, 0 );
curl_setopt( $session, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $session, CURLOPT_POSTFIELDS,$fields );
$response = curl_exec( $session );
curl_close( $session ); 

以下是接受路线的路线

Route::any('/api/requesthandler', 'TestController@requesthandler');

任何帮助表示赞赏.

解决方法:

如果您使用以下方法,则可以在最多5层深度的卷曲中进行重定向:

curl_setopt($session, CURLOPT_FOLLOWLOCATION, true); 

然后,如果curl重定向的页面,curl将返回其重定向到的页面中的数据,而不是您当前看到的数据.

标签:laravel-5-2,curl,laravel-4,php
来源: https://codeday.me/bug/20191122/2057865.html