Skip to content

Instantly share code, notes, and snippets.

@InvisibleWater
Last active August 21, 2024 02:21
Show Gist options
  • Save InvisibleWater/32cea20605e00b2cf23ad35198b7c393 to your computer and use it in GitHub Desktop.
Save InvisibleWater/32cea20605e00b2cf23ad35198b7c393 to your computer and use it in GitHub Desktop.
local HttpService = game:GetService("HttpService")
local body = {
Url = "https://api.bugasura.io/issues/add",
Method = "POST",
Headers = {
Authorization = "<HEADER>"
},
Body = string.format("team_id=%d&sprint_id=%d&summary=%s", team, sprint, summary)
}
print(body, HttpService:RequestAsync(body))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment