Giter Club home page Giter Club logo

Comments (3)

lode avatar lode commented on September 25, 2024

To send out a 204 you could use:

use alsvanzelf\jsonapi\MetaDocument;

$document = new MetaDocument();
$document->setHttpStatusCode(204);
$document->sendResponse();

Or, just plain http_response_code(204), because the library doesn't do anything else either as there's no content to arrange for.

Btw, sendResponse() doesn't accept a http status code or body to send out, you prepare the body by calling methods on a document, e.g. $document->add('foo', 'bar') and then calling $document->sendResponse() without any required arguments.

Also, if you ever get into issues with the content-type (I did too some time ago as not all browsers supported it correctly), you can pass a custom one as one of the options to sendResponse(), for example:

use alsvanzelf\jsonapi\MetaDocument;

$options = ['contentType' => 'application/json'];

$document = new MetaDocument();
$document->sendResponse($options);

And yes, officially you should send out application/vnd.api+json. But for debugging it might be useful to use another, and sometimes the context forces you to use something else. Go for the practical approach.

from jsonapi.

nebur81 avatar nebur81 commented on September 25, 2024

Ok, Thank you so much!. I'll take a look to your code.
Btw, Is there any method to add headers?. I want to add a header for authentication

from jsonapi.

lode avatar lode commented on September 25, 2024

Not really no, only the content-type header. Otherwise you can send headers yourself:

// ... prepare your document

// send custom headers before sending out the response
header('X-Foo', 'Bar');
$document->sendResponse();

from jsonapi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.