IndieCoderMM / tappy-plane

Mobile-first game inspired by FlappyBird. Created using ReactJS and Leaderboard API
https://tappy-plane.onrender.com
MIT License
3 stars 0 forks source link

Error when creating game: "You need to provide a valid name for the game" #2

Open nathancoh opened 11 months ago

nathancoh commented 11 months ago

Hi, I tried to create a new game following the steps in the Leaderboard Docs - but when I call the API with any value I always get a 400 error:

{
    "message": "You need to provide a valid name for the game"
}

An example:

Screenshot 2023-12-10 at 21 12 30

What is the accepted format for the name?

Thank you!

IndieCoderMM commented 11 months ago

Thanks for checking out my game!

Name should be inside the body of the request. You're passing it as a parameter which won't work.

image