当前位置:   article > 正文

利用python发送短信_data ":[, " status ":0, " msg ":"u7cfblu7edfu9519l

data ":[, " status ":0, " msg ":"u7cfblu7edfu9519lu8bef"," crypt ": tr

简单研究了一下,不是很全面

(1)直接的网页请求 url+电话号码

应对:直接请求

一个例子 对 url请求返回 

{"code":0,"msg":"\u7f51\u7edc\u9519\u8bef\uff01"}

解析,引入 json包,直接输出 

  1. a = '{"code":0,"msg":"\u7f51\u7edc\u9519\u8bef\uff01"}'
  2. myjson = json.loads(a)
  3. print myjson['code']
  4. print myjson['msg']

(2)json格式

  1. def sendJsonRequests(self,referer,postUrl,originalData):
  2. headers = {
  3. 'User-Agent': user_agent,
  4. 'Cache-Control': cache_control,
  5. 'Referer': referer,
  6. # 必须的,告知发送的是json格式
  7. 'Content-type':'application/json',
  8. }
  9. # 原始数据
  10. print originalData
  11. # 转化为json
  12. myJson = json.dumps(originalData)
  13. # print myJson
  14. # postData = urllib.urlencode(originalData)
  15. postRequest = urllib2.Request(postUrl,myJson,headers=headers)
  16. response = urllib
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/595906
推荐阅读
相关标签
  

闽ICP备14008679号