nodejs和instagram-node我得到400 - 无法访问回调URL

时间:2016-01-19 04:33:16

标签: node.js instagram instagram-api

我见过instagram-api-unable-to-reach-callback-url。 这没有用。 我正在尝试订阅用户

Authorize工作正常,它成功调用了我的回调 (redirect_uri = http://home.mydomain.me:8889/handleauth)我得到了一个result.access_token

exports.handleauth = function(req, res) {
    api.authorize_user(req.query.code, redirect_uri, function(err, result) {
     if (err) {
        console.log(err.body);
        res.send("Didn't work");
     } else {
        console.log('Yay! Access token is ' + result.access_token);
        res.send('You made it!!');
     }
   });
};

但是当我尝试订阅电话时,我得到了

  

{ “代码”:400, “ERROR_TYPE”: “APISubscriptionError”, “ERROR_MESSAGE”:“无法   到达回拨网址\“http://home.mydomain.me:8889/newpost \”。“}

exports.subscribe2= function(req, res, next) {

var headers = {
    'User-Agent':       'Super Agent/0.0.1',
    'Content-Type':     'application/x-www-form-urlencoded'
}
var options = {
    url: 'https://api.instagram.com/v1/subscriptions/',
    method: 'POST',
    headers: headers,
    form: {'client_id': 'myclientid'
            , 'client_secret': 'myclientsecret'
            , 'object': 'user'
            , 'aspect': 'media'
            , 'verify_token': myAccessToken from result.access_token above
            , 'callback_url': 'http://home.mydomain.me:8889/newpost'
          }
};

request(options, function (error, response, body) {
    if (!error && response.statusCode == 200) {
        // Print out the response body
        console.log(body)
        res.send(body);
    } else{
        console.log(error)
        res.send(body);
    }
})

};

我知道它可用的网址。我可以通过浏览器转到http://home.mydomain.me:8889/newpost。我还访问了https://www.site24x7.com/check-website-availability.html

中的网址

感谢您提供任何帮助/建议

1 个答案:

答案 0 :(得分:0)

我得到这项工作的方法是让我的回调使用https而不是http