How should I setup for data transfer from the site?

I’m working on a project. For continue, i need to transfer data between web. I don’t need to transfer from game. I need transfer data from website to game.

I have my own server, i can create port 80 website. But i want to make it more professional. My main goal is requesting data from the server. With ports, nodejs etc. I would be very happy if you help me.

If you need more detail about the server, message me. I don’t want to post my server in public.

You can use Roblox OpenCloud to interact with Datastores and sync data.

https://create.roblox.com/docs/open-cloud/data-store-api

I just realized how can i do that

const express = require('express')

const app = express();

app.use(express.static(__dirname + '/finished'));

app.listen(80);

I can access every json file in “finished” folder.

Use “POST” to send data to web server and use “GET” to get data from server. Use encrypted username and password just like API key to be able to send and get data

1 Like