Raspberry Pi Python将json数据传递给宁静的Web服务

时间:2017-08-16 04:03:32

标签: python json rest web-services raspberry-pi2

我正在尝试将json格式的数据从Raspberry Pi 2中的python脚本传递到Web服务。我尝试了以下代码:

import json 
import requests
import pprint
url = 'http://192.168.1.101/TestWebsite/api/SecondlyReadingDatas'
data = {'ID': '1', "ChannelID': '34','TimeStampID': '45}
data_json=json.dumps(data)
headers = {'Content-type': 'applcation/json'}
response = requests.post(url, json=data)
pprint.pprint(response.json))

但是,我收到以下错误:

  

{u'Message':你的错误发生了'}

我也尝试将response = requests.post(url, json=data)更改为response = requests.post(url, data=data_json, headers=headers)

我从以下链接引用了我的python代码:

REST post using Python-Request

但是,我仍然收到相同的错误消息。我不知道如何调试它,因为它不显示什么样的错误。非常感谢任何帮助

0 个答案:

没有答案