How can i use sheets to add, edit and delete as player registration and login

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By MarkedDev

Basically i want to implement a registration and login system for my godot 4 game, i want it to save scores to have a leaderboard, the accounts can just be premade ones just to test

Im not really sure if it will work using google sheets and such

How can i interact with sheets to get data, save, check data for login and im thinking using if statements for the player to play the game if they have registered or not and save their scores in sheets

:bust_in_silhouette: Reply From: GameSchool

Google has a REST API for Sheets (Google Sheets API Overview  |  Google for Developers ), but using it from the client will most likely be insecure. I guess that making a server side, while being harder, will provide better results and more control over the project

:bust_in_silhouette: Reply From: stormreaver

Even if you can make it work with Google Sheets, there is a very real likelihood that Google will kill Sheets at some point in the future.

Relying upon a free Google service is a risk, and I would recommend against it. Google is notorious for shutting down services it no longer has the will to maintain.