Is it possible to call a ifttt webhook in my roblox games so i could turn on and off my lights from roblox if so how would i do it?
1 Like
It should be possible, as long as they have an API endpoint for it. Start with familiarizing yourself with IFTTT’s API. Then you can use HttpService to make the necessary calls.
4 Likes
I just looked at it and it just confuses me
What are you confused about, IFTTT API or HttpService documentation?
1 Like
Both i dont see what i need to do
In HTTPService, you can make a table full of the JSON data you need to send to the api, and then encode it from a lua table into json by doing tableVariable = HTTPService:JSONEncode(tableVarible)
. Then, just use HTTPService:PostAsync(API_URL, tableVariable) -- or :GetAsync() to make a get request
1 Like