> 백엔드 개발 > PHP 튜토리얼 > 关于file_get_contents获取借口403

关于file_get_contents获取借口403

WBOY
풀어 주다: 2016-06-06 20:39:37
원래의
1919명이 탐색했습니다.

RT.
有一个接口,本身是302过的

<code>curl -L "api location"  -----> 正确返回数据(预期)
curl "api location"     -----> 返回空(预期)
curl -I "api location"  ------> 头提示302(预期)
</code>
로그인 후 복사
로그인 후 복사

如此上面的结论看出,接口是按照预期的想法输出的

由于项目架构的调整,所以才有上面302的产生,但是

php cli方式

<code>var_dump(file_get_contents('api loaction'))-->返回空(非预期)
</code>
로그인 후 복사
로그인 후 복사

最后参考stackoverflow:

stackoverflow 1

stackoverflow 2

<code>ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 6.0)'); 
var_dump(file_get_contents('api loaction'))-->返回预期数据(预期)
</code>
로그인 후 복사
로그인 후 복사

stackoverflow上的解释:

This is not a problem with your script, but with the resource you are requesting. The web server is returning the "forbidden" status code.

It could be that it blocks PHP scripts to prevent scraping, or your IP if you have made too many requests.

You should probably talk to the administrator of the remote server.

最后问题来了:

既然server端做了处理,那么curl和file_get_contents 是怎么的差异导致结果不一样?

回复内容:

RT.
有一个接口,本身是302过的

<code>curl -L "api location"  -----> 正确返回数据(预期)
curl "api location"     -----> 返回空(预期)
curl -I "api location"  ------> 头提示302(预期)
</code>
로그인 후 복사
로그인 후 복사

如此上面的结论看出,接口是按照预期的想法输出的

由于项目架构的调整,所以才有上面302的产生,但是

php cli方式

<code>var_dump(file_get_contents('api loaction'))-->返回空(非预期)
</code>
로그인 후 복사
로그인 후 복사

最后参考stackoverflow:

stackoverflow 1

stackoverflow 2

<code>ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 6.0)'); 
var_dump(file_get_contents('api loaction'))-->返回预期数据(预期)
</code>
로그인 후 복사
로그인 후 복사

stackoverflow上的解释:

This is not a problem with your script, but with the resource you are requesting. The web server is returning the "forbidden" status code.

It could be that it blocks PHP scripts to prevent scraping, or your IP if you have made too many requests.

You should probably talk to the administrator of the remote server.

最后问题来了:

既然server端做了处理,那么curl和file_get_contents 是怎么的差异导致结果不一样?

这里是不是没说清楚?OP这里 file_get_contents 的时候也是返回403吗?

如果仅仅是按照下面改UA来说,似乎只是这里影响了。

curlfile_get_contents 的差异,如果不看源代码的比较方法,应该是使用 tcpdump 等命令去抓一下发出去的请求内容,再做比较。

<code># tcpdump -i eth0 -A -n -v port ...
</code>
로그인 후 복사
관련 라벨:
php
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿