我正在使用API,有时会返回 HTTP / 1.1 403 Forbidden 消息。我该如何在代码中处理这个?
如果API返回 403 Forbidden ,请跳过以下代码,如果返回成功,请继续使用以下代码。
任何人都可以告诉我如何处理php代码中的 HTTP / 1.1 403 Forbidden ?
返回如下代码,
Config SSL = Config.build().withEncryption().toConfig();
无法检查状态代码。
答案 0 :(得分:1)
var_dump(http_response_code());
您可以使用此检查响应,然后根据发送的响应执行您需要的操作
答案 1 :(得分:0)
借助PHP" get_headers"功能我很容易得到状态代码并解决了我的问题,
get_headers($URL, 1); // will return all the headers sent by the server in response.
如果它将返回200,那么我将继续执行该脚本,否则停在那里。
当我打印 get_header 的响应时,它将在下面,
成功(200)响应如下,
Array
(
[0] => HTTP/1.1 200 OK
[Date] => Thu, 04 May 2017 12:38:41 GMT
[Content-Type] => text/plain; charset=utf-8
[Content-Length] => 725
[Connection] => close
[Server] => Apache
[Cache-Control] => max-age=0
[Expires] => Thu, 04 May 2017 12:38:41 GMT
)
For 403 Forbidden
Array
(
[0] => HTTP/1.1 403 Forbidden
[Server] => geoPlugin
[Date] => Thu, 04 May 2017 12:41:30 GMT
[Content-Type] => text/html
[Connection] => close
)