找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 735|回复: 0
打印 上一主题 下一主题

POST一个JSON格式的数据给Restful服务实例详解

[复制链接]

2588

主题

2588

帖子

7694

积分

论坛元老

Rank: 8Rank: 8

积分
7694
跳转到指定楼层
楼主
发表于 2018-2-14 05:26:52 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

            在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:"OST",
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, "OST");              
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);
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
            
            
        
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

用户反馈
客户端