Answers for "json object api"

1

JSONObject java

import org.json.simple.JSONObject;

class JsonEncodeDemo {

   public static void main(String[] args) {
      JSONObject obj = new JSONObject();

	    inputJSON.put("subscriberName", "subscriber");
	    inputJSON.put("msisdn","7055389495");

      System.out.print(obj);
   }
}
Posted by: Guest on June-26-2020
0

json api

json api - json url for testing
----------------------------------
https://jsonplaceholder.typicode.com/todos/1
https://jsonplaceholder.typicode.com/todos/
Posted by: Guest on October-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language