49 lines
859 B
HTTP
49 lines
859 B
HTTP
GET http://localhost:8010/ping
|
|
###
|
|
|
|
# create new game
|
|
POST http://localhost:8010/game
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"player_name": "Mirko"
|
|
}
|
|
###
|
|
|
|
# get game info
|
|
GET http://localhost:8010/game
|
|
###
|
|
|
|
# get player info
|
|
GET http://localhost:8010/player/test-player-pero
|
|
###
|
|
|
|
# move player left
|
|
POST http://localhost:8010/player/test-player-pero/move/left
|
|
###
|
|
|
|
# move player right
|
|
POST http://localhost:8010/player/test-player-pero/move/right
|
|
###
|
|
|
|
# move player up
|
|
POST http://localhost:8010/player/test-player-pero/move/up
|
|
###
|
|
|
|
# move player down
|
|
POST http://localhost:8010/player/test-player-pero/move/down
|
|
###
|
|
|
|
# purchase product
|
|
POST http://localhost:8010/player/test-player-pero/product/purchase
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"product_uuid": "cocacola-id"
|
|
}
|
|
###
|
|
|
|
# move Mirko left
|
|
POST http://localhost:8010/player/test-player-mirko/move/left
|
|
###
|