I am working on a mobile app that will let users create a JIRA issue in the cloud. I can see that there is support for building AddOns but they seem to be only for the web.
How do I create an add on so that it will let users of my iOS app OAuth log into their cloud JIRA account and create issues?
Is this only supported for server instances of jira?
New to JIRA so any pointers are much appreciated.
thanks
bipin
Hi Tom,
It depends how open your source code is. If all your developers are allowed to see all the source code, then you should be able to use a 10 user (note: this is different to the 10 committer starter license) license with Basic Auth. This is unrecommended however, since the same single user is used to authenticate all requests from JIRA to FishEye. The recommended and best approach is to use OAuth to authenticate and this requires an account on FishEye for each user wishing to view source from JIRA.
Cheers,
Nick
Can you explain "the same single user is used to authenticate all requests from JIRA to FishEye"? I thought Jira would just be asking about changes per issue, is there more to it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tom - when you use Basic Auth between JIRA and FishEye, then the request is made with the context of the user you've configured in the Basic Auth section of the Application Link. JIRA still does ask about changes per issue, however these changes may be in one or more repositories which may be protected for certain users. Using Basic Auth will use the credentials of the user you've configured rather than the context of the user currently logged in to JIRA. I suggest you try this out yourself to see how it works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tom -
If you want to see code changes from Git in JIRA - you could use the Git Integration add-on: https://marketplace.atlassian.com/plugins/com.xiplink.jira.git.jira_git_plugin/
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.