如何发布json数据?

时间:2016-01-10 05:24:43

标签: python json http flask

我的flask代码如下:

@app.route('/sheets/api',methods=["POST"])
def insert():
    if request.get_json():
        return "<h1>Works! </h1>"
    else:
        return "<h1>Does not work.</h1>"

请求时:

POST /sheets/api HTTP/1.1
Host: localhost:10080
Cache-Control: no-cache

{'key':'value'}

结果为<h1>Does not work.</h1>

当我添加Content-Type标题时:

POST /sheets/api HTTP/1.1
Host: localhost:10080
Content-Type: application/json
Cache-Control: no-cache

{'key':'value'}

我收到400错误。

我做错了什么?

1 个答案:

答案 0 :(得分:5)

您没有发布有效的JSON。 JSON字符串使用 double 引号:

{"key":"value"}

使用单引号,字符串无效JSON,并返回 400 Bad Request 响应。

演示仅实现您的路线的本地Flask服务器:

>>> import requests
>>> requests.post('http://localhost:5000/sheets/api', data="{'key':'value'}", headers={'content-type': 'application/json'}).text
'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">\n<title>400 Bad Request</title>\n<h1>Bad Request</h1>\n<p>The browser (or proxy) sent a request that this server could not understand.</p>\n'
>>> requests.post('http://localhost:5000/sheets/api', data='{"key":"value"}', headers={'content-type': 'application/json'}).text
'<h1>Works! </h1>'