Google App Engine卷曲不是24小时运行

时间:2016-09-29 12:14:55

标签: google-app-engine curl

我使用带有卷曲功能的Google App Engine。我启用了我的付款,所以它应该可以正常工作。

我在Google App Engine中创建了一个包含curl函数的PHP文件。我每分钟都用cron作业来称呼它。 cron作业每分钟运行24小时,但是卷曲功能24小时不能执行。以下是我的Google App Engine活动的屏幕截图:

My Google App Engine Summary Activities

我的卷发功能每天从凌晨1点到下午1点执行,并且通常在下午1点到凌晨1点再次运行。

我不知道出了什么问题,我检查了我的程序和cron作业设置,没有任何错误。

我的Google App Engine设置有问题吗?

请帮帮我

谢谢

NB。我在我的PHP.ini文件中启用了extension =“curl.so”

===== 更新

以下是我们使用的一些代码:

$api = "https://api.instagram.com/v1/media/search?lat=-1.597146899999999&lng=65.21213&distance=5000&count=100&access_token=$accesstoken&sig=$sig";

$response = get_curl($api);

function get_curl($url) {
    if(function_exists('curl_init')) {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL,$url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 
        $output = curl_exec($ch);
        echo curl_error($ch);
        curl_close($ch);
        return $output;
    } else{
        return file_get_contents($url);
    }
}

0 个答案:

没有答案