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