Skip to content

Instantly share code, notes, and snippets.

@gaodeng
Forked from davimacedo/curl.sh
Created May 2, 2018 15:26
Show Gist options
  • Select an option

  • Save gaodeng/48ae53c07f5a1ee8bede1883cc3d6ebe to your computer and use it in GitHub Desktop.

Select an option

Save gaodeng/48ae53c07f5a1ee8bede1883cc3d6ebe to your computer and use it in GitHub Desktop.
Example of exporting data with cloud functions
curl -X POST \
-H "X-Parse-Application-Id: YKjNQyNBBsaJpRlcSRxBfR3yKCGdU395XzZfqjdB" \
-H "X-Parse-REST-API-Key: JBDMxg9uyvbq7FQdd44EtSKDLdDlIrRrP6EIvFZJ" \
-H "Content-Type: application/json" \
-d '{"exportClass": "MyClass"}' \
https://parseapi.back4app.com/functions/export > out.json
Parse.Cloud.define("export", function(request, response) {
var ExportObject = Parse.Object.extend(request.params.exportClass);
var query = new Parse.Query(ExportObject);
query.find({ success: response.success, error: response.error });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment