Hi !
Context
I'm developing a small desktop app to display Jira issues and change their status. I would like to share it with friends and allow us to authenticate with their accounts (on jira cloud for now). I don't to find the best way to do it.
And I don't think it's important but I use Electron, in Javascript to make the app.
My understanding of the solutions
Main question
So, what is the best way to connect from desktop app to Jira Cloud ?
Sorry if my english is not good, I'm french :)
Thanks !
Bye.
Hi Jérémie,
If Oauth is too complicated, please see the documentation for API Tokens. You can generate one or more and revoke them anytime with your password remaining the same.
Claudiu
From my own attempts at this, the issue I see with the JIRA OAuth 1.0 implementation is the response to the `.../oauth/authorize` request to approve access doesn't make it easy to extract the verification code for programmatic use. Since my app is a desktop app I can't use the OAuth callback. I can screen scrape the response but that's not a great solution.
EDIT: I just realised I can intercept the redirect to the callback URL and get the oauth_verifier for the access-token request.
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.