About 11,700,000 results
Open links in new tab
  1. What is JSON and what is it used for? - Stack Overflow

    Apr 16, 2023 · 679 JSON (JavaScript Object Notation) is a lightweight format that is used for data interchanging. It is based on a subset of JavaScript language (the way objects are built in …

  2. Can comments be used in JSON? - Stack Overflow

    Yes. The JSON format has a lot of dead-space between elements and is space-insensitive in those regions, so there's no reason why you can't have single or multi-line comments there. …

  3. How to extract and access data from JSON with PHP?

    This is intended to be a general reference question and answer covering many of the never-ending "How do I access data in my JSON?" questions. It is here to handle the broad basics of …

  4. How can I deserialize JSON with C#? - Stack Overflow

    There's Json in System.Web.Helpers, there's JsonQueryStringConverter in System.ServiceModel.Web, there's JavascriptSerializer in System.Web.Script.Serialization, …

  5. python - Accessing JSON elements - Stack Overflow

    The main issue seems to be that the original solution treats the JSON purely as a dictionary, when in fact it is a... dictionary within a list, within a dictionary, within a dictionary

  6. How to upload a file and JSON data in Postman? - Stack Overflow

    Aug 19, 2016 · The way to send mulitpart data which containts a file with the json data is the following, we need to set the content-type of the respective json key fields to 'application/json' …

  7. How to make a class JSON serializable - Stack Overflow

    Sep 22, 2010 · It's unfortunate that the answers all seem to answer the question "How do I serialize a class?" rather than the action question "How do I make a class serializable?" These …

  8. rest - How do I POST JSON data with cURL? - Stack Overflow

    I use Ubuntu and installed cURL on it. I want to test my Spring REST application with cURL. I wrote my POST code at the Java side. However, I want to test it with cURL. I am trying to post …

  9. How do I turn a C# object into a JSON string in .NET?

    A new JSON serializer is available in the System.Text.Json namespace. It's included in the .NET Core 3.0 shared framework and is in a NuGet package for projects that target .NET Standard …

  10. Check whether a value exists in JSON object - Stack Overflow

    Below function can be used to check for a value in any level in a JSON function _isContains(json, value) { let contains = false; Object.keys(json).some(key => { contains = typeof json[key] === …