Giter Site home page Giter Site logo

Comments (8)

itsharshdeep avatar itsharshdeep commented on May 10, 2024 1

@jdnichollsc : I am really sorry for closing the issue bcz I know nothing about the help page you want me to add. I am only doing the front end part backend is doing some other freelancer.
So, its hard for me to say something like to him.

For now, I have used some other alternate plugin for the API functionality bcz that totally works fine.

But thanks once again for your contribution and making the plugin. :) 👍 💯

from restclient.

jdnichollsc avatar jdnichollsc commented on May 10, 2024 1

@itsharshdeep @davidorbelian after reviewing with NodeJS as the Backend, we can't send anonymous objects, a Serializable class is required. Example:

[Serializable]
public class ServerResponse {
  public string id;
  public DateTime date;
}
[Serializable]
public class User {
  public string firstName;
  public string lastName;
}
RestClient.Post<ServerResponse>("www.myapi.com/myendpoint", new User {
  firstName = "Juan David",
  lastName = "Nicholls Cardona"
}).Then(response => {
  EditorUtility.DisplayDialog("ID: ", response.id, "Ok");
  EditorUtility.DisplayDialog("Date: ", response.date.ToString(), "Ok");
});

Best regards, Nicholls

from restclient.

jdnichollsc avatar jdnichollsc commented on May 10, 2024

@itsharshdeep Can you install the nuget package Web Api Help Pages? I can't see any documentation of your service and I need to see how is your service getting the data of your request

from restclient.

jdnichollsc avatar jdnichollsc commented on May 10, 2024

Also the Content-Type application/json is added by default, so you don't need add that header again https://github.com/proyecto26/RestClient/blob/master/src/Proyecto26.RestClient/Utils/Extensions.cs#L25

from restclient.

itsharshdeep avatar itsharshdeep commented on May 10, 2024

Thanks a lot for quick response. But I didn't get "the nuget package Web Api Help Pages".
Can you please let me know in details. So that I can answer you well

from restclient.

jdnichollsc avatar jdnichollsc commented on May 10, 2024

@itsharshdeep from your web service https://www.nuget.org/packages/Microsoft.AspNet.WebApi.HelpPage/

from restclient.

jdnichollsc avatar jdnichollsc commented on May 10, 2024

?

from restclient.

davidorbelian avatar davidorbelian commented on May 10, 2024

@itsharshdeep if your back end is made on ASP.NET, probably the issue is related with JsonUtility. I had the same issue and it was resolved when I replaced JsonUtility with Newtonsoft.Json one.

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.