Hi, currently I have been messing around with apis and I am wondering how to make a game public using only apis. The game I have is fully published, but the api I am using is returning a 500 error.
data = {
"id": universeId,
"__RequestVerificationToken": str(Token),
"Name": "test", #name of the game
"IsPublic": True,
"AllowStudioAccessToApis": True
}
url = "https://www.roblox.com/universes/doconfigure"
request = publicsession.post(url, data=data)
print(request.json()) #returns an error
Any help is appreciated thanks.