Skip to content

Commit e747bf1

Browse files
ComputerCarlflovilmart
authored andcommitted
Change score (#472)
Having the player's score match the server port number just causes confusion.
1 parent 70c21ad commit e747bf1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_includes/parse-server/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Now that you're running Parse Server, it is time to save your first object. We'l
3939
curl -X POST \
4040
-H "X-Parse-Application-Id: APPLICATION_ID" \
4141
-H "Content-Type: application/json" \
42-
-d '{"score":1337,"playerName":"Sean Plott","cheatMode":false}' \
42+
-d '{"score":123,"playerName":"Sean Plott","cheatMode":false}' \
4343
http://localhost:1337/parse/classes/GameScore
4444
```
4545

@@ -64,7 +64,7 @@ $ curl -X GET \
6464
// Response
6565
{
6666
"objectId": "2ntvSpRGIK",
67-
"score": 1337,
67+
"score": 123,
6868
"playerName": "Sean Plott",
6969
"cheatMode": false,
7070
"updatedAt": "2016-03-11T23:51:48.050Z",
@@ -86,7 +86,7 @@ $ curl -X GET \
8686
"results": [
8787
{
8888
"objectId": "2ntvSpRGIK",
89-
"score": 1337,
89+
"score": 123,
9090
"playerName": "Sean Plott",
9191
"cheatMode": false,
9292
"updatedAt": "2016-03-11T23:51:48.050Z",

0 commit comments

Comments
 (0)