当我将Instagram发布到callback.php
这是一个列表订阅
Array (
[meta] => Array ( [code] => 200 )
[data] => Array ([0] =>
Array (
[object] => user
[object_id] =>
[aspect] => media
[callback_url] => http://sandbox.xxx.info/instagram/callback.php
[type] => subscription
[id] => 17368472
)
)
)
在我的callback.php
中,我只是尝试将某些内容写入文件
$data['x'] = '1234';
$file = file_get_contents('tmp/test.php');
$fulldata = $file . "\n\n" . json_encode($data);
file_put_contents('tmp/test.php', $fulldata);
但在我的Instagram上发布照片后没有任何反应。