Giter Club home page Giter Club logo

Comments (4)

jdnichollsc avatar jdnichollsc commented on May 23, 2024 1

@arjuntilt ok, with the last version of this plugin

  • Unity
List<IMultipartFormSection> form = new List<IMultipartFormSection>();

form.Add(new MultipartFormDataSection("firstName", "Juan"));
form.Add(new MultipartFormDataSection("lastName", "Nicholls"));

RestClient.Post(new RequestHelper {
    Uri = "http://localhost:8080",
    FormSections = form
})
.Then(res => EditorUtility.DisplayDialog ("Success", res.Text, "Ok"))
.Catch(err => EditorUtility.DisplayDialog ("Error", err.Message, "Ok"));
  • Backend (NodeJS, etc)
var express = require('express');
var router = express.Router();
var multipart = require('connect-multiparty');
var multipartMiddleware = multipart();

router.post('/', multipartMiddleware, function(req, res, next) {
  res.json({
    firstName: req.body.firstName,
    lastName: req.body.lastName
  })
});

captura de pantalla 2018-05-20 a la s 3 38 07 p m

from restclient.

jdnichollsc avatar jdnichollsc commented on May 23, 2024

Hi @arjuntilt, thanks for post this issue
Are you using a List<IMultipartFormSection> to create the formData? Can you share your code?
Best regards, Nicholls

from restclient.

jdnichollsc avatar jdnichollsc commented on May 23, 2024

A moment ago, I reverted all the changes from the master branch to create a pull request to compare with the previous version of the plugin, I'm going to add a property BodyString from the RequestHelper class to send your JSON if you want to use other tool to serialize the code, so let me do that change and improve the code, any comments are really apreciated

Pull request => #18

Regards, Nicholls

from restclient.

jdnichollsc avatar jdnichollsc commented on May 23, 2024

@arjuntilt any good comment from the Unity Asset Store would be really appreciated :)

from restclient.

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.