419 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
80
views
CSRF protection without CSRF tokens (rejecting x-www-form-urlencoded, using SameSite cookies, and making GET requests read-only)
Is it enough to prevent CSRF by rejecting x-www-form-urlencoded, using
SameSite=Strict cookies, and making GET requests read-only?
I'm trying to make sure my web application is fully protected ...
0
votes
0
answers
80
views
Robot Framework - GET - Response returns "Bad request 400" error
I am trying to call a simple GET request while passing "Header" attributes to the GET request. Without the "Header" attributes, I was getting a "Forbidden 403" error.
Anyway, I am not able to get a ...
0
votes
0
answers
96
views
OpenAPI for GET requests: oneOf for query parameters and grouping query/header parameters
I have encountered several unresolved and somewhat blocking issues regarding OpenAPI (I have used ChatGPT and other web services for a long time but haven’t found a suitable answer—even in the OpenAPI ...
0
votes
0
answers
44
views
get request only returning half the data is should
I am using spotifys get recently played tracks endpoint to get the last 50 songs I've listened to. However my response is seemingly getting cut off half way through the items array. This worked fine ...
0
votes
1
answer
107
views
UEFI Application: Unable to fetch the body of Http GET request
I am developing a UEFI application using the EDK2 environment and attempting to perform an HTTP GET request using the UEFI APIs. The event is not getting signaled after the Http->Response call. If ...
1
vote
0
answers
135
views
Powershell script to capture the error response and headers of http request
I am getting 403 error randomly for an http request. To test this I am making a powershell script that hits http request and log the error response, headers and error code of all 4XX series errors. I ...
0
votes
1
answer
84
views
Id getting changed in spring boot request
I have created a project with spring boot and MongoDB as database. I am trying to hit a get request to fetch the data that I have saved in the database. For fetching that I am passing an id from the ...
0
votes
1
answer
27
views
Unable to Fetch Conversations in React App Using Axios - tokens not being sent correctly in GET request
I'm working on a React app where I am expecting to fetch a list of conversations for the logged-in user. This has been achieved already with Postman on the production API.
However, in the API-...
0
votes
1
answer
66
views
How load fonts on DOM after receiving it from HTTP request (ttf file as binary format ) - Angular
I have an API which returns font file as byte array of data.
Using http client I have to make a GET request and get the output.
Can some help, how to load font to DOM?
Thanks
-1
votes
1
answer
105
views
What is the difference between manually extracting data and using a GET vs POST request with jquery AJAX?
I've developed a website using Python Flask, which includes a form with two dropdowns and a slider. I'm looking to retrieve the selected values from these form elements and send them to the python ...
0
votes
1
answer
215
views
Why can't I make a get-request with aiohttp: Expecting value: line 1 column 1 (char 0)?
Why do I see an error
Error while making request to
https://data.similarweb.com/api/v1/data?domain=httpbin.org: Expecting
value: line 1 column 1 (char 0)
with aiohttp while requests.get returns the ...
0
votes
2
answers
70
views
is /. and / same in go? Period(.) as id is not recognised
I have two route handlers
v1Router. Path("/{id}"). Methods(http.MethodGet). Handler(r.getter())
v1Router. Path("/"). Methods(http.MethodGet). Handler(r.searcher())
when i am ...
1
vote
0
answers
196
views
Twilio - Get request for call recording not working
I am trying to attach an audio file containing the call recording to an E-Mail.
My code works with audio files from public urls, but not with the Twilio call recordings.
I am sure the issue is with ...
0
votes
2
answers
332
views
Multiple consecutive slashes in the request causes 400 bad request error in Tomcat 10
I am upgrading my legacy project to Spring 6 and Tomcat 10. In that, normal requests are passed without any problem. But the requests like this:
http://localhost:9090/proactive-api/rest/order/...
0
votes
1
answer
107
views
How to block response from GET request
I'm using python requests library. I have to send GET request to a website. The response body weights a lot and I'm using a proxy and pay per-gb. I need to block response being received by a proxy ...