Skip to content

Instantly share code, notes, and snippets.

@niraj-shah
Created January 31, 2016 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niraj-shah/c3d3a7acf926dc092ef4 to your computer and use it in GitHub Desktop.
Save niraj-shah/c3d3a7acf926dc092ef4 to your computer and use it in GitHub Desktop.
Parse Server Verification using cURL
# Save data using Parse API
curl -X POST \
-H "X-Parse-Application-Id: YOUR_APP_ID" \
-H "Content-Type: application/json" \
-d '{"name":"Niraj Shah","score":"1337"}' \
http://localhost:1337/parse/classes/GameScore
# Retrieve all the entries in GameScore
curl -X GET \
-H "X-Parse-Application-Id: YOUR_APP_ID" \
-H "X-Parse-Master-Key: YOUR_APP_MASTER_KEY" \
http://localhost:1337/parse/classes/GameScore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment