When I try to upload the atlassian-connect.json, I am getting a 404 error from the
"lifecycle": {
"installed": "/installed",
"uninstalled": "/uninstalled"
},
which I believe is preventing me from successfully completing the add on process.
I am wondering if I need lifecycle as I am not using modules. I am assuming that modules are used to surface a widget or some UI with in a users' Jira Instance. Currently we are not developing an app that will surface any kind of GUI with the Jira Instance. Our app will do the following:
1) Uses Oauth2 to validate user
2) Get the Projects associated with the authenticated User
3) Get the Issues Types associated with the Projects
4) Create Issues based on those Issue Types in Projects associated with the User
{
"modules": {},
"key": "biz_jira_integration_local-v1",
"name": "NGROK_BIZ_JIRA_INTEGRATION",
"description": "Enables a user to create Jira base Story and Epic issues through BIZ Product Management application.",
"vendor": {
"name": "BIZ",
"url": "https://www.biz.com/"
},
"links": {
"self": "https://960b4PETER.ngrok.io/__static/affiliates/jira/local/atlassian-connect.json"
},
"lifecycle": {
"installed": "/installed",
"uninstalled": "/uninstalled"
},
"baseUrl": "https://960b4PETER.ngrok.io/__static/affiliates/jira/local",
"authentication": {
"type": "jwt"
},
"enableLicensing": false,
"scopes": [
"read",
"write"
]
}
Thus, far I have been able to accomplish these task by creating an app in https://developer.atlassian.com.
Question:
1) Do I need to incorporate https://....atlassian-connect/all.js in my application, if I am not using modules and do not wish to surface a GUI with in the users Jira Cloud Views?
2) Do I need to surface an lifecycle paths for Authentication if I am not using modules.
3) What should my atlassian-connect.json look like in order to achieve my current applications aims?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.