完整的错误是:
events.js:160
throw er; // Unhandled 'error' event
^
Error: getaddrinfo ENOTFOUND https://api.instagram.com https://api.instagram.com:443
at errnoException (dns.js:28:10)
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:79:26)
我的代码只是出错:
var express = require('express');
var app = express();
var https = require('https');
app.get('/oauth/ig', function (req, res) {
var options = {
hostname: 'https://api.instagram.com',
path: '/oauth/access_token?client_secret=myClientSecret&grant_type=authorization_code&redirect_uri=http://localhost:1992/oauth/ig&code='+req.query.code,
method: 'POST',
};
var igRequest = https.request(options, (response) => {
res.send("response");
});
})
我正在使用nodejs并且正在尝试使用Instagram OAUTH。
答案 0 :(得分:2)
hostname
应该只是主机名,不包括协议:
hostname: 'api.instagram.com',
答案 1 :(得分:2)
除了mscdex的回答之外,值得一提的是
npm
上已有工作模块可以做到这一点,例如:
也许你可以使用其中一个而不是自己的解决方案。
推出自己的解决方案没有任何问题,但如果你能做到正确,有时候不值得麻烦。
我上面推荐的两个模块是Passport的Instagram策略,这是在Node中进行身份验证的事实标准方式,有300多种不同的策略可供您统一使用。
有关详细信息,请参阅Passport网站。