requests post一个json数据

# post一个json数据
import requests

headers={

"Accept":"application/json, text/plain, */*",
"Accept-Encoding":"gzip, deflate",
"Accept-Language":"zh-CN,zh;q=0.8",
"appkey":"8dc7959eeee2792ac2eebb490e60deed",
"Connection":"keep-alive",
"Content-Length":"107",
"Content-Type":"application/x-www-form-urlencoded",
"Host":"cq.gsxt.gov.cn",
"Origin":"http://cq.gsxt.gov.cn",
"Referer":"http://q.gsxt.gov.cn/xxgg/xxgg_list.html",
"User-Agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.86 Safari/537.36",
"X-Requested-With":"XMLHttpRequest"

}

data = {
          "json":‘‘‘{
              "qc": {
                "noticetype": "12"
              },
              "page": {
                "pagesize":"10",
                "currentpage":"1"
              }
            }‘‘‘
          }

url=‘http://cq.gsxt.gov.cn/gsxt/api/affichebase/queryList‘

response =requests.post(url,data = data, headers=headers)
# requests.post()
print(response.text)
时间: 2024-11-11 05:11:46

requests post一个json数据的相关文章

AFNetworking如何post一个json数据到服务器

网址:http://my.oschina.net/gexun/blog/316408 AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; //申明返回的结果是json类型 manager.responseSerializer = [AFJSONResponseSerializer serializer]; //申明请求的数据是json类型 manager.requestSerializ

如何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); StringEnti

Struts2.5 利用Ajax将json数据传值到JSP

AJAX +JSON=>JSP AJAX AJAX 是一种在无需重新加载整个网页的情况下,能够更新部分网页的技术. 通过在后台与服务器进行少量数据交换,AJAX 可以使网页实现异步更新.这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新. 传统的网页(不使用 AJAX)如果需要更新内容,必须重载整个网页页面. JSON JSON(JavaScript Object Notation, JS 对象标记) 是一种轻量级的数据交换格式.它基于 ECMAScript (w3c制定的js规范

Diablo3英雄榜-使用Volley和Gson来处理暴雪API的Json数据

使用Volley和Gson来处理Json 暗黑3的API传递给我们的是一个Json数据.现在开始我们尝试来解析它.在百度了一下之后,我初步知道了2个工具.一个是Volley这个是用来获取Json数据.一个是Gson这个是用来解析Json数据. 本章的目标: 读取暴雪的API数据 解析该数据 使用Volley来获取Json数据 Volley支持原生字符串.图像.Json.可以让我们更专注于应用程序的逻辑.Volley通过下面的方法获取. $git clone https://android.goo

Volley 库通过网络获取 JSON 数据

1.通过Volley的newRequestQueue(Context context)方法初始化RequestQueue对象 2.定义一个JSON数据的字符串网络地址  可用的JSON接口(http://www.weather.com.cn/adat/sk/101010100.html) 3.根据Volley提供的JsonObjectRequest(int method, String url, JSONObject jsonRequest, Listener<JSONObject> list

在JS和.NET中使用JSON (以及使用Linq to JSON定制JSON数据)

转载原地址: http://www.cnblogs.com/mcgrady/archive/2013/06/08/3127781.html 阅读目录 JSON的两种结构 认识JSON字符串 在JS中如何使用JSON 在.NET中如何使用JSON 总结 JSON的全称是”JavaScript Object Notation”,意思是JavaScript对象表示法,它是一种基于文本,独立于语言的轻量级数据交换格式.XML也是一种数据交换格式,为什么没有选择XML呢?因为XML虽然可以作为跨平台的数据

JSON数据;

1.JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式. 2.JSON的规则很简单: 对象是一个无序的“‘名称/值'对”集合.一个对象以“{”(左括号)开始,“}”(右括号)结束.每个“名称”后跟一个“:”(冒号):“‘名称/值' 对”之间使用“,”(逗号)分隔. 3.简单的例子: <body> <div style="border: 1px solid red; width: 100px; height: 100px;" o

SpringMVC转换JSON数据(1)

SpringMVC提供了处理JSON格式请求/响应的        HttpMessageConverter:MappingJackson2HttpMessageConverter.利用Jackson开源类包处理JSON格式的请求或响应消息. 我们需要做的: 在Spring容器中为RequestmappingHandlerAdapter装配处理JSON的HttpMessageConverter 在交互过程中请求Accept指定的MIME类型 org.springframework.web.bin

iOS开发 -- 发送JSON数据给服务器

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { // 1.URL NSURL *url = [NSURL URLWithString:@"http://localhost:8080/MJServer/order"]; // 2.请求 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; // 3.请求方法 re