Questions tagged [http-status-code-422]

Unprocessable Entity

The server understands the content type of the request entity (hence a 415 Unsupported Media Type status code is inappropriate), and the syntax of the request entity is correct (thus a 400 Bad Request status code is inappropriate) but was unable to process the contained instructions.

99 questions
0
votes
1 answer

Fixing 422 response python requests get

h= { "Host": "gobiernoenlinea1.jalisco.gob.mx", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0", "Accept": "application/json, text/javascript, */*; q=0.01", "Accept-Language":…
0
votes
1 answer

Proxy server to my express server is not working in my React app

I am running my react app at port 3000 & express server at port 4000 , on the same local machine. In my react app , using fetch api i am sending my registration form data to my express server at '/register' route- const response = await…
0
votes
0 answers

I'm getting a 422 error when trying to post data from a local file to an api

As the title said I'm trying to post data but get the response "status":422,"error":"Unprocessable Entity". My code looks as follows: var data = {}; var confirmData = {}; confirmData['api_token'] = apikey; confirmData['absence'] =…
ReMinD
  • 1
  • 2
0
votes
1 answer

Shopify Admin API:Cannot upload asset to Layout folder - 422 error

I'm using the the admin API to make a restful PUT request to upload some file to theme folders. I can successfully upload files to any folder other that the 'Layout' folder, which gives a 422 error. Uploading to assets, templates sections etc works…
0
votes
0 answers

422 Unprocessable Entity Response in Webchat ID changing

I'm trying to do some automation on a shopping platform to automatically send messages when order is received. However I realise that i'm getting Response 422 when there is no conversation existing between me and the buyer. If there is a…
Foong
  • 45
  • 6
0
votes
2 answers

Posting with axios keeps returning Request failed with status code 422

My code was working fine until today, so basically what this API does is it sends a default gcm-id to server and logs out the user, but I keep receiving this error from this morning, and I don't know if it's related to server-side or client, so…
the preacher
  • 285
  • 3
  • 7
  • 23
0
votes
0 answers

Errbit returns '422 Unprocessable Entity' using airbrake/javabrake

Onboarding a Kotlin App to errbit 0.6.0 using airbrake/javabrake 0.1.6 client lib. Getting a '422 Unprocessable Entity' and HTML body. I can see that client lib is using airbrake v3 API. Does errbit 0.6.0 support that? Is there any mapping doc on…
Alex
  • 24
  • 4
0
votes
0 answers

POST /420 Message is Showing on Cypress

Recently I have started with Cypress with visual studio code and there is one step where I am doing sign up and User should be navigated to URL/account but what I can see response in terminal is "POST /signup 422" message for only that particular…
vinay
  • 13
  • 4
0
votes
1 answer

I can't display error messages in blade after I get 422 error

I'm new to the whole concept of exception or error handling in laravel. Basically I have form request which, when rules aren't met, shows me 422 error in console, I want to convert that into error message in blade, but I fail. I already tried this…
Lizard Derad
  • 379
  • 1
  • 4
  • 21
0
votes
0 answers

How to fix exchange() method with GET HTTP method to get proper JSON answer?

This is my first application Allegro Rest api using Java, Spring Boot and Maven. I am trying to make authorization Client_credentials flow and call the REST API resource using this guide https://developer.allegro.pl/auth/#clientCredentialsFlow.…
0
votes
4 answers

Unable to customize form errors because server is returning 422 Unprocessable Entity without returning errors

I'm working with Laravel and VueJS and for all of my post and put methods server returns the newly created data after submitting the form, in the case of errors, I cannot access them from the browser console. This is what I can see in the newtwork…
Christian LSANGOLA
  • 2,947
  • 4
  • 22
  • 36
0
votes
0 answers

web.config error handler for a Content-Type JSON

This is my current situation (in the web.config file):
0
votes
0 answers

422 Tika server response? Tika-Python

I have been trying to get Apache-Tika to work with this python package: https://github.com/chrismattmann/tika-python I have the following code in my python program: #!/usr/bin/env python import tika tika.initVM() from tika import parser parsed =…
Ryan Fasching
  • 449
  • 2
  • 11
  • 21
0
votes
0 answers

react-redux settings implementation broke previously functioning sign up process. error 422

This is my situation. I have a branch that's ahead of my master in which I created a settings view with react-redux. I wanted to add a place for users to change their initial input info. When I added and connected this view, my site broke. I…
Rob
  • 63
  • 1
  • 14
0
votes
0 answers

The required property 'blobName' is missing from the request

I am trying to create one stream analytics job in azure with one input of type stream and another of type Reference programatically (both by C# Code and Powershell). I am able to create the job with stream input, however when i go and create…