HTTP Verbs represent the request methods that are recognized as part of the Hypertext Transfer Protocol. These include but are not limited to POST, GET , PUT and DELETE.
Questions tagged [http-verbs]
219 questions
2
votes
1 answer
Laravel: MethodNotAllowedHttpException only on production server
I have read laravel throwing MethodNotAllowedHttpException and I know that this error often appears when one is POSTing to a GET route, but I am really sure that I am POSTing to a POST route.
Also this does work on my locale Homestead version but…

Adam
- 25,960
- 22
- 158
- 247
2
votes
1 answer
HTTP verb for 'translate'
I'm writing a REST web service that translates texts from one language to another. The text can be fairly large, up to a few megabytes.
What HTTP verb is best to use?
My first thought was to use GET because it gets you the translation for the given…

Sergey Slepov
- 1,861
- 13
- 33
2
votes
1 answer
How do I exclude verbs in ASP.NET Core API?
I need to exclude verbs allowed for an API solution, but I can't find examples how to do it in web.config.
I did find an example for MVC that looks like this:

Friso
- 2,328
- 9
- 36
- 72
2
votes
2 answers
with Rselenium, can't navigate anymore
I asked and answer this question a few days ago and got Rselenium running fine.
now I can't navigate anymore, I don't think anything changed so I'm puzzled.
shell('docker run -d -p 4445:4444 selenium/standalone-chrome')
remDr <-…

moodymudskipper
- 46,417
- 11
- 121
- 167
2
votes
0 answers
ASP.Net Core Global Authorization Filter Based on HttpVerb
I'm trying to create an easy policy, which will Allow anonymous Requests for All HttpGet Gets by Default and Authorize for anything else (put, patch, post, delete etc.)
Currently I'm requiring authorization everywhere like so:
var…

johnny 5
- 19,893
- 50
- 121
- 195
2
votes
3 answers
post vs. put when posting a form
When evaluating that a form was submitted, I check that the method was post, not get. I was told this is a good way to know that the form was submitted by clicking the submit button and that it's not just being submitted by a script that's passing…

samuel
- 71
- 2
- 3
2
votes
1 answer
Restful api and operations like search and invite
Restful api should not use verb in path, but how to design api for:
search products
filter products
invite friends

Sodiaan
- 341
- 1
- 3
- 10
2
votes
1 answer
Using Http Patch to update certain fields
I have the below Employee representation, which resides in a database:
public class Employee
{
int Id {get; set;}
string Name {get; set;}
string Position {get; set;}
string Address {get; set;}
string EmergencyContact {get; set;}
…

WildFlower
- 129
- 1
- 11
2
votes
1 answer
How to automatically overload DELETE and PUT if they are not available by the client?
How can I detect at the startup of the application that a client doesn't support DELETE and PUT verbs and automatically overload the POST verb?
On the server side, how can I redirect those overloaded POST verbs into the right actions?
Say I have a…

the_drow
- 18,571
- 25
- 126
- 193
2
votes
1 answer
IIS 10 giving 401.3 access denied for PUT, DELETE, or PATCH for specific path
I'm working on a REST API, and doing test and prototype work on Windows 10 with its native IIS install. The API is written in C#. I've created a class that derives from IHttpHandler, and derive from that to implement classes for my API's nouns.…

SQLGuy
- 41
- 4
2
votes
3 answers
ASP.NET MVC - How to Create a RESTful Controller Scheme?
If this is a duplicate, please let me know - because i had a quick look and couldn't find anything that really answers my question.
I'm experimenting with ASP.NET MVC 2. Now coming from a Web Forms background, i only really dealt with HTTP GET and…

RPM1984
- 72,246
- 58
- 225
- 350
2
votes
2 answers
Route::delete in Laravel is not catching Request $request
with this url
http://localhost:8888/api/v1/apartments/delete , I'm trying to delete a determinate apartment without passing the id through the URL. I'm sending data with POSTMAN but I can't catch it with Request or Input…

therealbigpepe
- 1,489
- 2
- 16
- 23
2
votes
1 answer
Calling HTTP PUT on OWIN TestServer
I have been trying to implement integration testing with OWIN TestServer class and everything works except for implementation of PUT or DELETE methods. The POST method code (which works) looks like this:
using (var server =…

adova
- 950
- 1
- 8
- 14
2
votes
2 answers
CORS request preflight request, ending in user code
I have a set of WCF web services running on an internal only interface, which are called by a number of other websites (also internal only). The domain names match, it's just a different port number.
I'm making AJAX POST requests to these web…

Morvael
- 3,478
- 3
- 36
- 53
2
votes
4 answers
How to send larger amounts of data to a stateless RESTful retrieval service
This seems quite a basic question so apologies if this has been asked before; please point me in the direction of any useful resources.
So I have a RESTful service to retrieve some data. However, the RESTful service requires a certain amount of data…

Adam Burley
- 5,551
- 4
- 51
- 72