waterwheel.js icon indicating copy to clipboard operation
waterwheel.js copied to clipboard

Removes _format query string solve Bad Request error

Open boulaffasae opened this issue 7 years ago • 0 comments

In JSON API Development version (8.x-2.x-dev) Request with _format=api_json cause the below error

{
  "errors": [
    {
      "title": "Bad Request",
      "status": 400,
      "detail": "JSON API does not need that ugly \u0027_format\u0027 query string! \ud83e\udd18 Use the URL provided in \u0027links\u0027 \ud83d\ude4f",
      "links": {
        "via": "http://example.com/jsonapi/node/{{resource}}/{{resource_uuid}}?_format=api_json",
        "info": "http://example.com/jsonapi/node/{{resource}}/{{resource_uuid}}"
      }
    }
  ],
  "jsonapi": {
    "version": "1.0",
    "meta": { "links": { "self": "http://jsonapi.org/format/1.0/" } }
  }
}

Note: the error occurs only for single resource node different than article.

boulaffasae avatar Sep 05 '18 13:09 boulaffasae