Questions tagged [http-status-code-400]

400 Bad Request. Add this tag to a question if your requests receive this answer.

The request could not be understood by the server due to malformed syntax. The client should not repeat the request without modifications.

See also RFC2616.

806 questions
0
votes
1 answer

Moved Wordpress website to root directory, now getting http 400 Bad Request errors

URL: http://www.tmla.org/athletics/ Tried reuploading the images and no luck. Never encountered this before. Anyone know why this is happening? "NetworkError: 400 Bad Request -…
Dave Rottino
  • 1,037
  • 3
  • 22
  • 49
0
votes
1 answer

Spring Roo Error: "The request sent by the client was syntactically incorrect ()"

I'm trying out Spring Roo to generate CRUD operations for all of the tables in my database. I get the following error: HTTP Status 400 - description The request sent by the client was syntactically incorrect (). Using Firebug, I can see that the…
LittleLebowski
  • 7,691
  • 13
  • 47
  • 72
0
votes
2 answers

foursquare adding a tip exception

I am working on foursquare API v2 in Android. In my application User can check-in and add a tip. check- in method is working good but add a tip method got error. private void methodTipAdd(String venueId, String tip, boolean auth) { …
0
votes
1 answer

Read json returned by 400 error clojure

I have a web-service that reply at some get request, something like this: http://developer.echonest.com/api/v4/artist/reviews?api_key=N6E4NIOVYMTHNDM8J&id=ARH6W4X1187B99274F&format=json&results=1&start=2 if a parameter in the request is…
Siscia
  • 1,421
  • 1
  • 12
  • 29
0
votes
1 answer

Error 404: missing core name in path' in Solr

I used: //server.deleteByQuery( "*:*" );// CAUTION: deletes everything! Query in my solr indexing program. Since then i am receiving the error whenever, I go to http://localhost:8080/solr/admin/ and press search with query string : The error…
CodeMonkey
  • 2,265
  • 9
  • 48
  • 94
0
votes
2 answers

WCF REST 4 template POST request works on localhost, but error code 400 on server

I have a WCF REST service that I customized from the VS2010 online template. I specifically customized the POST method to a minimal amount of XML. Everything works exactly like I want when running on localhost. When I deploy it to the server,…
jdb1a1
  • 1,045
  • 1
  • 13
  • 32
-1
votes
2 answers

Spring Boot style edition in Geoserver by Rest Api

Could You please help me to edit styles in geoserver by POST method? I am in trouble with this and I am stuck in one place. When I run this code and go to http://localhost:8010/styles/point on the page and I have Whitelabel error and in postman I…
-1
votes
1 answer

Failed to load resource: the server responded with a status of 400 (Bad Request) on email verification link page api

I have made sure the backend works pretty fine with postman but when I try running the code on the client side, it fails with response: Failed to load resource: the server responded with a status of 400 (Bad Request) Below are the codes controlling…
-1
votes
1 answer

400 Bad Request Error while login into app

I am running automation script using WebdriverIO and the test case is, pseudo code: Description("Pay the due payment to the vendor user", async () => { it("Pay using CC", async () => { Login with Admin Perform admit task …
-1
votes
1 answer

Bad request instead of message

i hava a problem that i am unble to figure whats i am doing wrong. So basically backend sends the error message but somehow browser is overwrites the message with Bad request. Screen shoot of message that browser retuens me. This is the response…
-1
votes
1 answer

Axios GET request not working with payload (NOT AS PARAMS)

I have to send a get request to get a value from server and display it in my react application. But for some reason it is throwing 400 error code. I think there might be an issue with my get request. So I read many articles but they all said that…
-1
votes
1 answer

Python Http Client requests

I would like to retrieve product data using the POST method and pass the security key in the header. I get an HTTP 400 error: def api(request): headers={'content-type':'application/json','security-key': 'valu-key'} url =…
-1
votes
1 answer

CORS header ‘Access-Control-Allow-Origin’ missing on response in addon but not on request

I am creating a Firefox extension which posts some data to a database. I made all parts in a modular fashion and am now combining everything piece by piece. As such I know that my code to POST data to the database works. Now here is the part that…
-1
votes
2 answers

C# Refit Multipart Content stays blank

I'm new to C# and Refit and I encountered an issue I can't solve. I need to convert the following CURL request to Refit (It must be refit) curl -X 'POST' \ 'https://www.hybrid-analysis.com/api/v2/quick-scan/file' \ -H 'accept: application/json'…
-1
votes
2 answers

Getting 400 (Bad Request) on a POST request to Strapi

I am trying to post data to my Strapi project from a Flutter app. I made sure that the permissions are enabled for unauthenticated users. What is wrong with my request? Future saveReview(usrReview, usrRating) async { const endpoint =…
Noah-1
  • 396
  • 1
  • 5
  • 20