Could you please let me know, how can I access JIRA Rest API by impersonating a user request. A request from user should go to a service. Service should use admin rights to access API and fetch the details.
There is no impersonation function.
I am trying to achieve something like below.but failing. Please guide me.
Let's say User submits a request to create an issue in jira board. Since user doesn't have account in jira. I want to create a rest api which will receive the users request and then uses admin credentials and make a request to jira rest api to create an issue. This is what I am trying to achieve.
However, I am facing problems here. I have admin account in jira. When I login in browser I can see JSessionId. Now when I am passing my user name or email Id with password (which is my windows password) basic authencarion is failing.
Could you please be do kind to help me.
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 need to decide who to log in as, and use that account (you'll lose the informaiton about who is raising it, of course, but at least you'll get something)
Your JSession is useless unless you've got SSO enabled.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have admin account in organization jira cloud. We also have pki implementation for end users. So end users need to do oauth authencation to login after logging in they can fill details and submit a post request to create an issue.
Now this request will reach rest api where we will use my admin account to create issue in jira.
It is still fine if we lose information about who raised the issue.
But the issue is I am unable to achieve what I explained above. Please be so kind to let me how can I Achieve this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To do what you have described above, you will need who to decide who to log in as, and use that account to make 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.
I am sorry but this statement is not that clear to me. Lets say u have made a request to Rest API which I have hosted in my server. Once the API receives your request, it will create actual URL to hit JIRA and a token based on my identity (since mine is admin account).
So, now how can I create an access token in rest API after receiving the request from you. Because for creating an access token I need my smart card.
I hope I am not confusing you. Please excuse me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
>how can I create an access token in rest API after receiving the request from you
You will need to use the method detailed in the REST API docs. However, there's a far better description of what you need to do in Andrew's answer over at https://community.atlassian.com/t5/Jira-questions/How-to-authenticate-to-Jira-REST-API/qaq-p/814987
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Very much for that. I will try these ways. For now I am accepting as this really really helped me. If I face any issues in achieving this I will raise a new question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.