Created
January 31, 2016 14:30
-
-
Save niraj-shah/c3d3a7acf926dc092ef4 to your computer and use it in GitHub Desktop.
Parse Server Verification using cURL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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