Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,554,146
Community Members
 
Community Events
184
Community Groups

Always getting 403 error with REST API

Edited

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
 

 

3 answers

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.

@subham saurabh have you found any remedy for this?

0 votes
Bloompeak Support
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Sep 15, 2020

Hi @subham saurabh ,

Basic authentication is deprecated. See the below notice for the details.

https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-basic-auth-and-cookie-based-auth/

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events