HTTP স্ট্যাটাস কোড
HTTP স্ট্যাটাস কোডগুলি সার্ভার একটি HTTP POST
বা HTTP GET
অনুরোধের প্রতিক্রিয়া হিসাবে তৈরি করতে পারে:
-
200 OK
: সফল অনুরোধ। -
400 Bad Request
: অবৈধ যুক্তি (অবৈধ অনুরোধ পেলোড)। -
403 Forbidden
: অনুমতি অস্বীকার করা হয়েছে (যেমন অবৈধ API কী)। -
429 Resource Exhausted
: হয় রিসোর্স কোটার বাইরে বা হার সীমিত। -
500 Internal Server Error
: অভ্যন্তরীণ সার্ভার ত্রুটি (আপনার অনুরোধ পুনরায় চেষ্টা করুন)। -
503 Service Unavailable
: অনুপলব্ধ৷ -
504 Gateway Timeout
: সময়সীমা অতিক্রম করেছে (আপনার অনুরোধ পুনরায় চেষ্টা করুন)।
দ্রষ্টব্য : ক্লায়েন্ট যারা একটি অসফল HTTP প্রতিক্রিয়া (অর্থাৎ, 200 OK
ব্যতীত অন্য যেকোন HTTP স্ট্যাটাস কোড) পান তাদের অবশ্যই ব্যাক-অফ মোডে প্রবেশ করতে হবে।
HTTP স্ট্যাটাস কোড 400 Bad Request
পাওয়ার সম্ভাব্য কারণ:
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2024-10-30 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2024-10-30 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["The server generates HTTP status codes like `200 OK` for success and various error codes (`400`, `403`, `429`, `500`, `503`, `504`) for different issues encountered during `POST` or `GET` requests."],["Clients receiving unsuccessful HTTP responses (any code other than `200 OK`) should enter back-off mode to avoid overwhelming the server."],["`400 Bad Request` errors can arise from invalid arguments in requests to `fullHashes.find`, `threatListUpdates.fetch`, or `threatMatches.find` methods, such as invalid hashes, empty update requests, or missing threat entry types."]]],["The server responds to HTTP `POST` or `GET` requests with various status codes. `200 OK` indicates success. Errors include `400 Bad Request` for invalid input, `403 Forbidden` for permission issues, `429 Resource Exhausted` for quota/rate limits, `500` for internal errors, `503` for unavailability, and `504` for timeouts. A non-`200 OK` response requires clients to enter back-off mode. `400` errors may occur due to invalid hashes, empty update requests, or missing threat information.\n"]]