我是JIRA和deployd的新手。 我遇到了从JIRA通过deployd和angularjs获取身份验证的问题。
我正在使用这个npm服务用于JIRA连接器 https://github.com/floralvikings/jira-connector
在我的angularjs代码中这里是dpd post方法
dpd.jira.post($scope.jira, function (result, err) {
if (err) {
return console.log(err);
};
console.log(result, result.id);
});
在 $ scope.jira 中,我发送主机和base64进行身份验证,如本文档中所述 https://github.com/floralvikings/jira-connector#basic-authentication-base64
在我的dpd发布活动中,我正在使用此功能
const JiraClient = require('jira-connector');
const jira = new JiraClient( {
host: this.url,
basic_auth: {
base64: this.hashKey
}
});
现在我想确定此身份验证是否有效, 如果它有效,那么帖子将成功,否则它将通过错误消息。
我怎样才能做到这一点?
提前致谢
请不要做任何反对票,因为我遇到了严重的麻烦