Instagram Realtime API自动取消订阅高容量标签

时间:2015-09-26 11:49:36

标签: php symfony instagram instagram-api

我读过Instagram开发者文档,如果我们在2秒钟内没有确认POST,那么Instagram取消订阅标签。

我如何确定,我的代码会在2秒内响应?如何检查取消订阅何时发生?

这是我的代码。我正在使用php.Please建议

    if ($challenge) {
        echo $challenge;
        exit ();
    } else {


        $myString = file_get_contents ( 'php://input' );
        $jsonArray = json_decode ( $myString );

        foreach ( $jsonArray as $value ) {

            $hashtag = $value->object_id;

            $firstApi = 1;

                exec ( "php getInstagramData.php $hashtag ");

        }
    }

0 个答案:

没有答案