Hi
I have developed on spring boot jira cloud add on now i am running it using ngrok but when i am trying to access any url i am getting this message
{"status":401,"error":"Unauthorized","message":"No message available","timeStamp":"Wed Jul 10 12:48:01 IST 2019","trace":null}
Url is like this--
https://8e76570b.ngrok.io/issue-todos-panel
and my atlassian-connect.json is like this-
{
"key": "todo-addon",
"baseUrl": "https://8e76570b.ngrok.io",
"name": "Atlassian Connect Spring Boot Example",
"lifecycle": {
"installed": "/installed",
"uninstalled": "/uninstalled"
},
"scopes": [
"READ", "WRITE"
],
"modules": {
"webPanels": [
{
"url": "/issue-todos-panel",
"location": "atl.jira.view.issue.right.context",
"weight": 50,
"name": {
"value": "To do"
},
"key": "issue-todos-panel"
}
]
}
}
I used jwt also in json file then also getting same message and after removing also same message .Please suggest a better answer.