Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Google form response empty?

Asked by 1 year ago

Trying to make use of httpservice and google forms for a roblox game I got httpservice able to send a successful response to a google form, but when I check the response, all the answers are empty

For reference here is the current code

local descriptionEntryId = "entry.595603189"
local brickInfoEntryId = "entry.121553089"

local data = {}
data[descriptionEntryId] = "a little cool entry"
data[brickInfoEntryId] = "another cool little entry"

print(HttpService:JSONEncode(data))
HttpService:PostAsync(url, HttpService:JSONEncode(data))

I've got no scripting friends that know how to use httpservice that are able to answer this, and bing's AI hasn't given a good answer either so I'm hoping you guys can tell me the issue

the print is just so I can see what it is sending, which in this case is

{"entry.121553089":"another cool little entry","entry.595603189":"a little cool entry"}

which I'm only sending and printing for testing purposes any of you know why the responses are empty?

0
Did you read/watch a tutorial for this? If you did, can you send the link of that tutorial? I've never seen this before and I'd like to learn more about it and maybe answer your question. T3_MasterGamer 2189 — 1y

Answer this question