PHP 远程调用 API 500报错解决方案

WBOY
發布: 2016-06-13 12:26:26
原創
1635 人瀏覽過

PHP 远程调用 API 500报错
function getInventory($code) {
    $req = new InventoryGetRequest();
    $req -> setProductCode($code);
    $client = new DefaultSuningClient(SERVER_URL, APP_KEY, APP_SECRET, FORMAT);
    $resp = $client -> execute($req);
    $response = json_decode($resp, true)['sn_responseContent'];
    if (isset($response['sn_error'])) {
        return false;
    } else {
        return $response['sn_body']['inventory']['invNum'];
    }
}
 写一个函数远程调用对方API ,在记录数少的时候 比如100左右,运行正常,记录数多的话 比如3000以上就报 500错误

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at [email protected] to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.


初步在想是不是远程API响应超时造成的,水平有限,不会一一排查,请大帅可以指点迷津。

------解决思路----------------------
目标网站问题,和你的代码没有关系。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!