Bis*_*han 5 node.js auth0 auth0-delegated-admin
我create hook在我的Auth0委派管理扩展中使用了一个.
我在触发create hook时收到此错误:
Error: connect ETIMEDOUT xxx.xxx.xxx.xxx:8081
at Object.exports._errnoException (util.js:1020:11)
at exports._exceptionWithHostPort (util.js:1043:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1090:14)
Run Code Online (Sandbox Code Playgroud)
创建Hook功能是:
function(ctx, callback) {
var request = require('request');
// Perform any asynchronous actions
var API_URL = "https://example.com:8081/api/saveData";
var empFirstName = 'Jhone';
var empId = '123';
request.post({
url: API_URL,
json: {
firstName: empFirstName,
userId: empId
}
},
function(error, response, body) {
if (error) {
ctx.log('Create failed to '+API_URL+':', error);
return callback(new Error('Something went wrong. Please try again.'));
}
ctx.log('Create successful! Server responded with:', body);
return callback(null, {
/*some data here*/
});
});
}
Run Code Online (Sandbox Code Playgroud)
我试过邮差,它按预期工作.但是使用create hook,我遇到了错误.
可能是什么问题?
您的端点似乎不可用或没有响应。
您确定此端点处理 content-type: application/json 吗?否则尝试将其作为 x-form-www-urlencoded 发送。
request.post({
url: MY_URL,
form: {
firstName: empFirstName,
userId: empId
}
Run Code Online (Sandbox Code Playgroud)