2,340 questions
1 vote
1 answer
101 views
Spring Boot 3 + Spring Security 6: 403 Forbidden when sending POST from Postman (stateless API)
I’m testing a POST endpoint of a stateless API (no sessions/forms) and Postman returns 403 Forbidden. I suspect CSRF, but I’m not sure how to configure it correctly in Security 6 for a stateless REST ...
1 vote
0 answers
64 views
MS Graph request returns 403
To automate processing of my e-mail messages on MS account, I have registered some application called "NameOfMyRegisteredApplication"; gave it all MS Graph Read rights; and then I ran the ...
0 votes
0 answers
88 views
Getting 403 error when using Spotify Web API
I am working on a spotify song reccomender project and keep getting the 403 error when i run, i havent been ablke to figure it out, if anybody has, please let me know! from dotenv import load_dotenv ...
0 votes
0 answers
62 views
CloudFront throws 401 or 403 before accessing to API Gateway
This is my first time deploying a web application using AWS and I could successfully see the static pages but not dynamic pages now. I've read that when CloudFront gets a header with authorization, it ...
0 votes
0 answers
1k views
Why does Google Drive API return a 403 `storageQuotaExceeded` error for new Service Accounts, even with 0-byte operations?
I am encountering a critical, blocking issue with newly created Google Service Accounts that prevents any file creation via the Drive or Sheets APIs. This is happening under my personal Google account ...
4 votes
0 answers
132 views
R check has 403 errors for stackoverflow URLs
My R package has several references to URLs, especially in its NEWS.md file. These have never caused problems until now; but a recent R CMD check with my package had messages like this: Found the ...
0 votes
1 answer
72 views
Forbidden (CSRF cookie not set.): /517775/users/approve-decline/4
@method_decorator(csrf_exempt, name='dispatch') class ApproveOrDeclineUserView(APIView): def patch(self, request, org_code, user_id): try: organization = Organization.objects....
1 vote
2 answers
127 views
URLSession GET request returns 403 in iOS app, but works in Postman with the same token
I'm building a chat app in Swift using URLSession. I have an authenticated GET request to fetch the current user's friends list. The request works perfectly in Postman using the same token and URL, ...
0 votes
1 answer
93 views
HTML website code not accessing files in subfolders on cPanel
I am getting HTTP error 403 when viewing the logo in the admwebntech website using this HTML code. I am also getting the same error when viewing another website2 logo. This is still occurring when ...
0 votes
0 answers
35 views
Getting The video identified by the <code><a href=\"/youtube/v3/docs/commentThreads/list#videoId\">videoId</a></code> parameter has disabled comments
By calling this API curl --location 'https://www.googleapis.com/youtube/v3/commentThreads?part=id%2Creplies%2Csnippet&allThreadsRelatedToChannelId=****&maxResults=100' \ --header '...
1 vote
2 answers
204 views
Why do I get a HTTP Error 403: Forbidden when trying to use the OECD API
I'm just trying to use the OECD API to pull a couple of datasets, nothing dramatic, but when I even use their example, I get an error message with HTTP Error 403: Forbidden. The documentation is here, ...
0 votes
1 answer
130 views
Azure File Share sync with Blob (azcopy) gives 403
Issue: When copying/syncing files from the Azure Files Share (storage account: A) to Blob (storage account: B) I get a 403 error. Steps to reproduce: Setup two storage accounts (A and B), each one in ...
1 vote
1 answer
495 views
BioTime login fails with 403 when using HTTPS behind Nginx reverse proxy
We have a ZKTeco MB10 Attendance Device I have successfully installed it, and connected to the BioTime 9.5 that we are hosting on a VPS, I have pointed a subdomain record to the the VPS ip address and ...
0 votes
0 answers
232 views
chromium-browser error 403/Forbidden from one device, works fine from several others
I have several Raspberry Pi devices around the house that serve as clocks with some additional information (temperature and some other stati). The way they operate, is to simply open a web browser to ...
0 votes
0 answers
60 views
What is a legitimate way in PHP to test if a third-party site is working?
We host a set of "resource" pages - a collection of useful links for our users. For years we've had a script run daily - looping through each link and sending one php Guzzle HEAD request to ...