我正在使用 Instagram 的实时照片 URL ( http://instagram.com/developer/realtime/ ),我可以成功订阅,因为它返回了以下详细信息:
Array
(
[meta] => Array
(
[code] => 200
)
[data] => Array
(
[object] => user
[object_id] =>
[aspect] => media
[callback_url] => http://example.com/instagram/
[type] => subscription
[id] => 123456
)
)
但是当用户上传新照片时,我的回调 url 上没有发送任何更新。这是我的回调 URL 上的代码:
mail("myemail@gmail.com","im here","I entered here"); #check if it really does enter here
if(isset($_GET['hub_challenge']))
{
echo $_GET['hub_challenge'];
}
else
{
#It should enter here if user uploads a new photo
$data = file_get_contents('php://input');
$data = json_decode($data);
...some of my codes...brevity...
}
我注意到我没有收到更新,因为正如您在我的代码中看到的那样,每当我的回调 url 发生某些事情时,它都会向我发送电子邮件。所以我没有收到任何电子邮件,即使我已经检查了我的垃圾邮件文件夹。
Instagram 实时照片更新 API 真的宕机了吗?或者有什么我需要做的?
对你的帮助表示感谢!谢谢!:)