Exporting Data

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

I’m making a game where people have to decode as many words as they can in a certain amount of time, and I was wondering if there was a way that I could export their scores so that I can see everyone’s score, almost like a survey? Basically they play the game on their computer and it sends the data of their score somewhere else that I can access it. Thanks!

:bust_in_silhouette: Reply From: kelaia

You can use a http server and use the game to send a http request with the data you want to collect.

Yeah I’ve been looking into that and have written an http request on the Godot side, but I don’t know how to write my own api that will work with my game. Do you have any suggestions?

djmick | 2022-02-19 14:22

2 easy ways to get that:
1 - Classic LAMP/WAMP
2 - Node + Express/Koa
Both are easy to learn and use.

kelaia | 2022-02-19 17:06