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?