Google form response empty?
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
1 | local descriptionEntryId = "entry.595603189" |
2 | local brickInfoEntryId = "entry.121553089" |
5 | data [ descriptionEntryId ] = "a little cool entry" |
6 | data [ brickInfoEntryId ] = "another cool little entry" |
8 | print (HttpService:JSONEncode(data)) |
9 | 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?