Hi, Im trying to get data from my gist with http service however it throws an error that it cant parse JSON I checked the file with a JSON validator and it still doesnt work.
local headers = {
["Authorization"] = `Bearer {AUTH}`
}
local data = {}
local getRequest = HttpService:GetAsync(URL, false, headers)
data = HttpService:JSONDecode(getRequest)
print(data)