如何使用REST API更新关联数组列?

时间:2014-05-07 14:28:25

标签: php rest curl parse-platform put

我很紧张。我需要在Parse.com中使用关联数组列更新(PUT)一行。但我无法弄清楚如何做到这一点,我无法在parse.com的文档中找到任何内容。我在PHP编程,我创建了自己的cURL包装器(换句话说,我需要有人告诉我URL的外观如何)。

1 个答案:

答案 0 :(得分:0)

它在此处的文档中列出:https://parse.com/docs/rest#objects-updating

curl -X PUT \
  -H "X-Parse-Application-Id: app-id-here" \
  -H "X-Parse-REST-API-Key: rest-api-key-here" \
  -H "Content-Type: application/json" \
  -d '{"score":73453}' \
  https://api.parse.com/1/classes/class-name-here/object-id-here

其中数据是更新密钥的json编码对象。