GithubHelp home page GithubHelp logo

Comments (4)

rajesh-krishnan avatar rajesh-krishnan commented on June 24, 2024

Found a solution using https://github.com/iafonov/multipart-parser-c

from facil.io.

boazsegev avatar boazsegev commented on June 24, 2024

Hi @rajesh-krishnan ,

Thank you for opening this issue.

Depending on which version of facil.io you might be using, you might be interested to read the HTTP data parsing documentation at facil.io.

Besides functions such as http_parse_query and http_parse_body you might consider using an external multipart form parser if it better fit your app.

For example, this HTTP response callback will print out the parsed data in JSON format to the terminal:

static void on_http_request(http_s *h) {
  http_parse_query(h);
  http_parse_body(h);
  FIOBJ json = fiobj_obj2json(h->params, 1);
  fprintf(stderr, "%s\n", fiobj_obj2cstr(json).data);
  /* set a response and send it (finnish vs. destroy). */
  http_send_body(h, "Hello World!", 12);
}

Pease note that uploaded files will create a "sub-group" / FIOBJ Hash with the following keys:

  • data - a FIOBJ String with the content of the file.
  • type - a FIOBJ String with the mime type of the file as provided by the client.
  • filename - a FIOBJ String with the original filename as provided by the client.

Good Luck!
Bo.

from facil.io.

rajesh-krishnan avatar rajesh-krishnan commented on June 24, 2024

Thank you. That worked splendidly; I have no need for an external parser.

from facil.io.

boazsegev avatar boazsegev commented on June 24, 2024

Cool 😎

I'm happy to have helped :)

from facil.io.

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.