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

How to catch 422 Unprocessable entry in laravel 5.5.16

How to catch 422 Unprocessable entry in laravel 5.5.16 ? I am getting below error message while I am sending http://127.0.0.1:8000/api/topics API request. I would like to customize this error.In this regard I would like to know Which class and…
abu abu
  • 6,599
  • 19
  • 74
  • 131
0
votes
0 answers

Android Retrofit2 error 422 on POST request

I want to make a POST request to a server with retrofit, but I always get error 422. I just wanna know if I do something wrong or it is the server fault. Retrofit call: OkHttpClient.Builder duplicateTimeSessionClient = new…
Boanta Ionut
  • 402
  • 8
  • 24
0
votes
1 answer

Handling 422 errors when logging in

I'm currently handling 422 errors(an invalid auth token was passed to rails) and I currently redirect the user to a separate page. This works well but what I've discovered is that if a user logs in and hits a 422 error during that log in request,…
thank_you
  • 11,001
  • 19
  • 101
  • 185
0
votes
2 answers

My rendering in Rails (possibly) causes a 422 error

I have received reports from users to my website that they get Error 422 when visiting a "result" page using POST. I cannot re-create this error at all so I am wondering if there is anything in my code below that would cause this error in…
Christoffer
  • 2,271
  • 3
  • 26
  • 57
0
votes
1 answer

Instagram API rate limits and taking down the client?

So i recently have submitted my Instagram integration app to market, but I'm concerned about users who repeatedly use the app. If some users do not observe the rate limits, Instagram automatically limits their activity. But my question is whether…
saraX
  • 181
  • 2
  • 13
-1
votes
2 answers

Gitlab sigin in and redirect to a 422 page

I just install a new gitlab-ce instance. I set the property [external_url] 'https://xxxxx' a https protocol,but I did not enable the ssl. So I visite the https://xxxx and it can sigin in. But the browser tell me this site is insecurity.So I edit the…
KongFu
  • 1
  • 2
-1
votes
1 answer

422 on axios and 200 on Postman

So, i'm trying to make a request to an api, when I do it with Axios on my node project, it returns me 422, and when I do the same request, with the same header, and the same data, on postman or thunder client, they give me 200 and the data that I…
Harry
  • 39
  • 4
-1
votes
1 answer

Python post request for an API

I'm a beginner and I'm getting a 422 error when running a code to extract data from an API endpoint. I Googled the code and realized it's an (Unprocessable Entity) status code, but I'm not sure how to fix it. The documentation for the API is right…
-2
votes
1 answer

Why I got 422 unprocessable content when I try to reset password?

Hello everyone I'm on resetting password with laravel and reactJs Actually when I try to reset password I always get error 422: {password: ["The password confirmation does not match."]}. But I'm sure the two passwords are the same this is the…
1 2 3 4 5 6
7