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 bipin,
You need to utilize JIRA REST API. Here is the method for issue creation: https://docs.atlassian.com/jira/REST/cloud/#api/2/issue-createIssue
See here how to authenticate REST calls: https://developer.atlassian.com/jiracloud/authentication-and-authorization-39990700.html
Hi Volodymyr
The docs seem to suggest JIRA Cloud rest APIs work with JIRA AddOns which are server side components. Looks like to make REST API calls from a mobile client it can only be done on a in house hosted JIRA server instance.
is that correct?
thanks for your response
bipin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi blipin,
It's just REST API and it works from everywhere. All you need to worry is authentication of the rest calls.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @bipin,
I am aware that this is not an answer to your question, but you are aware that there already is a mobile app for JIRA? See the launch blog post over here.
In the meantime, it is also available on Android and boards have been introduced as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
similar thing here. I guess basic authentication is no longer supported and I have to use oauth?
have any sample code for swift?
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.