如何使用deployd,angularjs和jira-connector对JIRA进行身份验证?

时间:2018-04-30 11:16:07

标签: angularjs jira deployd

我是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
    }
  });

现在我想确定此身份验证是否有效, 如果它有效,那么帖子将成功,否则它将通过错误消息。

我怎样才能做到这一点?

提前致谢

请不要做任何反对票,因为我遇到了严重的麻烦

0 个答案:

没有答案