如何POST一个JSON格式的数据给Restful服务

Posted 陈小峰_iefreer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何POST一个JSON格式的数据给Restful服务相关的知识,希望对你有一定的参考价值。

android/java平台上实现POST一个json数据:

JSONObject jsonObj = new JSONObject();
jsonObj.put("username", username);
jsonObj.put("apikey", apikey);
// Create the POST object and add the parameters
HttpPost httpPost = new HttpPost(url);
StringEntity entity = new StringEntity(jsonObj.toString(), HTTP.UTF_8);
entity.setContentType("application/json");
httpPost.setEntity(entity);
HttpClient client = new DefaultHttpClient();
HttpResponse response = client.execute(httpPost);


用curl可执行如下命令:

curl -l -H "Content-type: application/json" -X POST -d '"phone":"13521389587","password":"test"' http://domain/apis/users.json


用jQuery:

$.ajax(
  url:url,
  type:"POST",
  data:data,
  contentType:"application/json; charset=utf-8",
  dataType:"json",
  success: function()
    ...
  
)

php用cUrl实现:

$data = array("name" => "Hagrid", "age" => "36");                                                                    
$data_string = json_encode($data);     
$ch = curl_init('http://api.local/rest/users');      
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                          
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(                 
    'Content-Type: application/json',
    'Content-Length: ' . strlen($data_string))         
);                                                                                                                   
$result = curl_exec($ch);


by iefreer

以上是关于如何POST一个JSON格式的数据给Restful服务的主要内容,如果未能解决你的问题,请参考以下文章

将 java 应用程序转换为 restful uri

如何将请求参数转为json格式

基于RESTful下的api

如何通过restful api传递部分对象(json)

如何使用JSON格式 POST数据到服务器

如何使用JSON格式 POST数据到服务器