You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have written a VBA script for Jira using the rest API.
https://jira.name.com/rest/api/2/issue/issue-id
I am using Basic auth for authentication. The script was working fine until 2 days back it started giving me 403 errors.
The script is running fine for other people it is only me who is getting this issue.
T see if I lost the access I also tested the API in the browser,
I tried with the browser(Talend API tester), it is working fine there. it's only in the VBA it is showing errors
Dim JiraService As New MSXML2.XMLHTTP60
Dim json As Object 'for parsing response to json
Dim IssueId As String 'for getting the issue-id from the user
IssueId = JiraIssue.IssueId.Value 'getting issue id from the user
'if issue id is not available exit the function
If IssueId = "" Then Exit Function
With JiraService
.Open "GET", "https://jira.name.com/rest/api/2/issue/" & IssueId, False
.setRequestHeader "Content-Type", "application/json"
.setRequestHeader "Accept", "application/json"
.setRequestHeader "Authorization", "Basic " & UserPassBase64
.send ""
'if status 401 not authorized call method for login
If .Status = "401" Then
MsgBox "please Login" & vbNewLine & "invalid username/password"
If LoginForm.Visible = False Then
LoginForm.Show ' calling login pop-up box to get userid and password
End If
'if issue does not exist
ElseIf .Status = "404" Then
MsgBox "issue does not exists", vbInformation, "Not Found" 'sending message if no issue is found
Exit Function
'if user don't have permission to see the issue
ElseIf .Status = "403" Then
MsgBox "You do not have permission to view the specified issue", vbInformation, "Acess Denied"
Exit Function
I have same issue.
When I use postman (using basic authen) then it still working.
But call REST API on Excel then it has status = 403. Response Text is xsrf check failed.
When I add header User-Agent then it working.
Let try.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @subham saurabh ,
Basic authentication is deprecated. See the below notice for the details.
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.