Hi. I'm creating an app that will handle data from Jira Service Desk Cloud. This app is fully Backend.
I tried to use oAuth 2 for this but it requires Javascript to get permissions. Is it possible somehow to do it without user browser interaction? Something like:
1. go to
2. Get the code in the response using http client
3. Create token & refresh_token
Or is it better to create api token for the user and use it for authorized requests?
Thanks!