Hi, When linking a ticket I need specific information from the parent issue to be copied over when the linked ticket is created and going to a different project board. Is there an automation rule that will do this.
Thank You,
Anne
If anyone is still struggling, the refresh token is provided in the same dictionary as the access token.
So get the code using the authorisation url (making sure to add offline_access); your refresh token will then be in the response when you use that code to get the access token
@Henry_Cooper not working for me as well as I adding the offline_access in the scopes in authorisation URL and got code but while using the code to get the access token am getting only acess_token and not the refersh_token :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it works for me but I think you are using the wrong URL it must be "https://auth.atlassian.com/authorize"
or they just fixed it.
so basically you will get your refresh_token after you request for the access_token.
I hope this will help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Following this documentation https://developer.atlassian.com/cloud/jira/platform/oauth-2-authorization-code-grants-3lo-for-apps:
1. Add `offline_access` to scope in the request to `https://auth.atlassian.com/authorize`, it will not return the refresh token.
2. Continue to the second step in the documentation: getting cloudid. Use the code from callback as in the documentation, the response of this request includes the `refresh_token`.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I didn't find it to be true.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This does not work. I still can't seem to get the refresh token in the first place myself. from when exchanging the code. I don't get the refresh token.
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.