如何使用 resclientemozilla 发送 post 到 apigility?
how to send a post to apigility with resclientemozilla?
如何使用 HTTP POST 将 JSON 数据发送到 apigility?我正在尝试发送此数据:
{
"nombre_pais": "MEXICO",
"id": "20",
"artist": "JUAN AGUIRRES",
"title": "CRAZY",
"genero": "Balada, Pop",
"ocupacion": "Cantante, Productos",
"sitio_web": "www.juanAGUIRRE.com",
}
但是我得到一个错误:
{
"type": "http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html",
"title": "Bad Request",
"status": 400,
"detail": "JSON decoding error: Syntax error, malformed JSON"
}
我该怎么办?谢谢。
我想当有人告诉您 "JSON decoding error: Syntax error, malformed JSON" 时,您应该检查 JSON 的语法。 http://jsonlint.com/ 是众多在线验证器之一。您会发现在最后一个值之后多了一个尾随逗号。
每一种常用语言现在都有自动创建的能力JSON,不要尝试自己动手
如何使用 HTTP POST 将 JSON 数据发送到 apigility?我正在尝试发送此数据:
{
"nombre_pais": "MEXICO",
"id": "20",
"artist": "JUAN AGUIRRES",
"title": "CRAZY",
"genero": "Balada, Pop",
"ocupacion": "Cantante, Productos",
"sitio_web": "www.juanAGUIRRE.com",
}
但是我得到一个错误:
{
"type": "http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html",
"title": "Bad Request",
"status": 400,
"detail": "JSON decoding error: Syntax error, malformed JSON"
}
我该怎么办?谢谢。
我想当有人告诉您 "JSON decoding error: Syntax error, malformed JSON" 时,您应该检查 JSON 的语法。 http://jsonlint.com/ 是众多在线验证器之一。您会发现在最后一个值之后多了一个尾随逗号。
每一种常用语言现在都有自动创建的能力JSON,不要尝试自己动手