This category is for developers who are interested in discussing server to cloud migrations of their apps.
Hi Akassab,
I am into the JIRA server to Cloud Migration. Here I can able to notify the JIRA CLOUD MIGRATION ASSISTANT (JCMA). But I have the Atlassian Express Connect Cloud app, to receive the notifications from the Server app through webhook process.
Atlassain Documnetation : Getting Started
curl -X PUT âhttps://your-cloud-site/rest/atlassian-connect/1/migration/webhookâ
âheader âContent-Type: application/jsonâ
âdata-raw â{âendpointsâ : [âhttps:///â,âhttps:///â]}â
For this, I am trying to register some dummy( letâs assume which will be by webhook url) for /migration/webhook endpoint but i am getting error like this when registering the endpoints
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>**401****Client must be authenticated to access this resource**.Is there any solution to me, to work with Atlassian connect express framework on node js implementation
Hi Dharma,
In order to send any request to a site via connect, you need to ensure the followings:
- Your cloud App should be installed on the site, so that your app and connect will have a shared secret. I assume you know this.
- Each request to cloud site from your cloud service should be singed by the same secret, or in other words it should have JWT in the request
Here is a link for further read about Atlassian Connect.
There is a Node.js example for Atlassian Connect - here.
However, there is no sample App for App Migration in Node.js.
Here is what I suggest:
- Use the Atlassian connect sample app as your basic example
- Then add the App migration endpoints call with the help of our documentation.
Let me know if you need any further help. Thank you.
Regards,
Anshuman
Please create a new post to ask a question. Thank you!