Am using the basic auth tocreate issue using the API in postman and it created successfully but when i do the same using the JS it gives me 403 XSRF check failed
here's the code
$http.post("http://localhost:8080/rest/api/2/issue" , JSON.stringify(data), { headers: { 'Authorization': 'Basic c2toYXR0YWI6T1BCcWFSaHBNZEZNM3JhUWhTeDJMbzRzR1M3U3NzMDBScGlRYU4=', 'Content-Type': 'application/json', 'Access-Control-Allow-Origin' : 'http://localhost:8080', 'X-Atlassian-Token': 'no-check' } }
também tentei colocar X-Atlassian-Token e não deu certo não.
poxa, que mandinga!!! será que se trocar o User-Agent funciona mesmo? DUVIDO!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, I know this is a very old issue but I just stumbled upon this problem as well and I thought I might be able to help people with the same issue. In our case, there were two possible solutions.
- Change User Agents Header (not possible as far as I know in Chrome)
- Whitelist/Allowlist the origin domain in Jira. When you send a request to the Jira API your browser automatically populates the "origin" header. You need to add that value to the whitelist/allowlist in Jira. -> See here Configuring the allowlist | Jira | Atlassian Documentation
Type "Domain" should work.
See the issue documented by Atlassian:
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.