1

我正在评估 atlassian-connect-express 并刚刚使用“atlassian-connect new”创建了一个应用程序样板,然后通过 ngrok 将其部署到我的 Jira 开发帐户。

这很好用,但是当我尝试将文件“credentials.json”与我的帐户数据一起使用时,插件以错误消息开头:

无法注册主机 https‍://michael%40...:[我的密码]@connect-ace.atlassian.net (401) 插件
未注册;未检测到兼容主机

当我访问 url connect-ace.atlassian.net 时,我收到了类似的消息

这是我的 atlassian-connect.json

{
    "key": "my-add-on",
    "name": "Ping Pong",
    "description": "My very first add-on",
    "vendor": {
        "name": "Angry Nerds",
        "url": "https://www.atlassian.com/angrynerds"
    },
    "baseUrl": "https://xxxxxxx.ngrok.io",
    "links": {
        "self": "https://xxxxxxxx.ngrok.io/atlassian-connect.json",
        "homepage": "https://xxxxxxx.ngrok.io/atlassian-connect.json"
    },
    "authentication": {
        "type": "jwt"
    },
    "lifecycle": {
        "installed": "/installed"
    },
    "scopes": [
        "READ"
    ],
    "modules": {
        "generalPages": [
            {
                "key": "hello-world-page-jira",
                "location": "system.top.navigation.bar",
                "name": {
                    "value": "Hello World"
                },
                "url": "/hello-world",
                "conditions": [{
                    "condition": "user_is_logged_in"
                }]
            },
            {
                "key": "hello-world-page-confluence",
                "location": "system.header/left",
                "name": {
                    "value": "Hello World"
                },
                "url": "/hello-world",
                "conditions": [{
                    "condition": "user_is_logged_in"
                }]
            }
        ]
    }
}

和我的 credatials.json

{
    "hosts": {
        "connect-ace.atlassian.net": {
            "product": "jira",
            "username": "michael@---",
            "password": "---password---"
        }
    }
}

如何让我的开发帐户与 connect-ace 一起使用?

4

3 回答 3

2

要检查的两件事:

1 - 检查 credentials.json 是否具有正确的值。主机网址应以 https://开头。密码是从这里生成的 api 令牌。

{
    "hosts": {
        "https://<your atlassian site name>.atlassian.net": {
            "product": "jira",
            "username": "<jira user name>",
            "password": "<Token created from https://id.atlassian.com/manage/api-tokens>"
        }
    }
}

2-在设置 -> 应用程序 -> 管理应用程序 -> 设置中启用开发模式。(如果应用程序未在市场上发布,这是必需的)

在此处输入图像描述

于 2020-03-20T18:02:13.957 回答
0

您是否尝试过生成自己的云实例并在那里进行测试?如果还没有,请尝试在此处创建一个。成功注册后,在您的 credentials.json 中,使用您的 baseUrl/站点名称和正确的凭据更改“connect-ace”,它应该会自动为您安装它。

于 2017-10-05T00:06:56.013 回答
0

此错误是 atlas-connect 打印错误图像的默认值

在 atlasssian-connect.json 替换这个:

  "lifecycle": {
        "installed": "/installed"
    },

为了这:

 "lifecycle": {
        "installed": "installed"
    },
于 2020-03-03T12:49:43.050 回答