Skip to main content
1 vote
1 answer
141 views

The Gist API explicitly allows any * host and the PATCH method: access-control-allow-origin: * access-control-allow-methods: GET,PUT,PATCH,OPTIONS,POST However, when a PATCH request is issued from a ...
Marc's user avatar
  • 14.9k
0 votes
1 answer
130 views

I've been adding an API to a .NET Core 8 website. When I run it locally in IIS Express out of Visual Studio, all the PATCH, PUT, and DELETE requests work. When I deploy to IIS 10 on a server, they're ...
Green Grasso Holm's user avatar
0 votes
1 answer
48 views

From MDN (Archive): for HTTP request methods that can cause side-effects on server data (in particular, HTTP methods other than GET, or POST with certain MIME types), the specification mandates that ...
SinaMobasheri's user avatar
0 votes
1 answer
54 views

This is my postman setup; for the request object; public class UploadRequest { public List<IFormFile> File { get; set; } public int EntityType { get; set; } public ...
TyForHelpDude's user avatar
0 votes
2 answers
67 views

When trying to curl this endpoint with curl -X GET -i localhost:5000/person/66c09925-589a-43b6-9a5d-d1601cf53287 the implementation works fine: HTTP/1.1 200 OK Server: Werkzeug/3.0.3 Python/3.12.3 ...
Bitts's user avatar
  • 7
-2 votes
2 answers
193 views

I found that my HTTP delete request runs perfectly when I test it in Postman. However, when I try to test it in the browser, I receive a 'Cannot GET /account/delete/Julieth' error. I managed to ...
Julieth Bautista's user avatar
0 votes
1 answer
392 views

I am relatively new to the web development and I am writing backend for webapp for practicing chemical elements and compounds and their formulas in our school. I am using Django and Django Rest ...
VaclavJirka's user avatar
-1 votes
1 answer
219 views

We are using HTTP protocol to trigger an asynchronous action on the web server, which later in the background loads data from another server and writes them into our server's database. ┌──────┐ ...
Honza Zidek's user avatar
  • 21.7k
0 votes
1 answer
68 views

Yea I know it's such a strange purpose create_or_delete. But I have an attendances table for users, and in the frontend there's a checkbox, when it's checked -> create an attendance record when ...
Rafael Adel's user avatar
  • 7,759
0 votes
1 answer
71 views

Q1. Is it okay to use the word "deregistration" in the API specification, or should I use "signout"? Which one is better? Q2. And I wonder if the actual logic of membership ...
정재연's user avatar
1 vote
1 answer
332 views

Here in my ASP.NET Core 6 Web API project, when I try to make a request to an authorized endpoint and I'm not authenticated, the API returns a status code of 405, but isn't it supposed to return 401 ? ...
A_AhMaD's user avatar
  • 55
0 votes
1 answer
369 views

When i access the URL api in the browser, i get this error in the screen: Request method 'GET' not supported What i want is to completely remove this error when i access the url directly in the ...
Ronald Torres's user avatar
1 vote
1 answer
181 views

I am trying to return a specific group by ID in GroupMe using Python. The official documentation states that, to get a specific group, you append the base URL with /groups/:id and add the group ID ...
BarelyDeveloper's user avatar
0 votes
1 answer
78 views

I am evaluating CefSharp to build a desktop application which basically only wraps a web application. To access files from the file system I want to intercept http requests of the web app. I adapted ...
Michael's user avatar
  • 108
-1 votes
1 answer
81 views

I'm currently working on a MVC app. I've implemented a route using a POST method to retrieve information and navigate to the corresponding page, and I have some concerns about the design practices I'm ...
noMoreBeans's user avatar

15 30 50 per page
1
2 3 4 5
25