I want to integrate my website with jira so that a user of my site can access his jira issues. Which the best way to do it? application link, plugin or I will to to make an app on Jira cloud? I am using rails
Use the REST API to talk to it: https://developer.atlassian.com/cloud/jira/platform/rest/v3
But I want to integrate in such a way that a user can see a a button or action of some sort on Jira issue page, which will ask whether he want want to create a milestone on my website. If he says yes then a new milestone would be created on my site whose name and description would be same as that of jira issue. will this be possible through rest API. Also could ypu please explain me when should we use application link, plugin or jira cloud app
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just adding to the suggestion from @Nic Brough -Adaptavist-.
If the call is outgoing (from JIRA to your website), then use Webhook.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
but how will I connect a user's Jira account to his account on my website?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, you can specify what information is transferred from JIRA via Webhook.
As for your website, you would need a way to read the information and map the user account to the one in your website. (Outside my specialisation).
The logic though is:
Like I said, I am not an expert on the server side script that reads your Webhook though.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what about this? " button or action of some sort on Jira issue page, which will ask whether he want want to create a milestone on my website"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are thinking of using a button for this then it will need to be a transition button.
i am unaware of any other buttons that can be used here.
cheers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, it is. You can transition an issue, which can poke your milestone system with a webhook.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.