Instagram实时订阅发送空POST请求

时间:2013-01-28 12:11:46

标签: php json instagram

我有一个问题,即Instagram向我发送实时订阅的空数据。这是我的步骤

我正在注册订阅

root@132701-10002:/var/www/realtime# curl -F 'client_id=MYSECRET'      -F 'client_secret= MYSECRET'      -F 'object=tag'      -F 'aspect=media'      -F 'object_id=newyork'      -F 'callback_url=http://myurl/realtime'      https://api.instagram.com/v1/subscriptions/

instagram回答我

{
    "meta": {
        "code": 200
    },
    "data": {
        "object": "tag",
        "object_id": "newyork",
        "aspect": "media",
        "callback_url": "http://myurl/realtime",
        "type": "subscription",
        "id": "2838731"
    }
}

没关系。

比我尝试使用此脚本接受instagram请求:

<?php
if (@$_GET["hub_challenge"])
{
  echo $_GET["hub_challenge"];
}
$myString = file_get_contents('php://input');
$answer = json_decode($myString);
$ALL = date("F j, Y, g:i a")." ".print_r($answer,true)."\r\n";
file_put_contents('activity.log', $ALL, FILE_APPEND);
?>
来自空查询的活动constist中的

January 28, 2013, 12:09 pm 
January 28, 2013, 12:09 pm 
January 28, 2013, 12:09 pm 
January 28, 2013, 12:09 pm 
January 28, 2013, 12:09 pm 
January 28, 2013, 12:09 pm 
January 28, 2013, 12:09 pm 
January 28, 2013, 12:10 pm 
January 28, 2013, 12:10 pm 
January 28, 2013, 12:10 pm 
January 28, 2013, 12:10 pm 
January 28, 2013, 12:10 pm 
January 28, 2013, 12:10 pm 
January 28, 2013, 12:10 pm 

1 个答案:

答案 0 :(得分:4)

我尝试向你的回调网址发送一个POST请求,这是我得到的:

curl -X POST x.x.x.x/realtime
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="http://x.x.x.x/realtime/">here</a>.</p>
<hr>
<address>Apache/2.2.22 (Ubuntu) Server at x.x.x.x Port 80</address>
</body></html>

我认为Instagram不支持301重定向。因此,您可能需要更改回调网址以添加尾部斜杠。

因此,您的回调网址应为http://x.x.x.x/realtime/

相关问题