Server.on() IFTTT

Hi. I’m trying to implement IFTTT webhook to be sent on function or button press
I don’t think I have a problem with sending the webhook but what I do need help with is inputting the IFTTT credentials in using the app. I either need an extra 2 input fields or another webpage for this to go.
In the wiki " Also you can use it to load custom settings or to specify own server pages with the server.on() method."
is there a example of how this is used.
many thanks for any help.

Since WLED does not currently support https web requests (at least the last time I checked), you might consider a usermod that forwards a request to a PC on your LAN that’s always on and available to handle http web requests, and then forward them on to IFTTT using https. Then parse the results and return to WLED via an API call to update your usermod with the results of the request.

Thanks for your input. I have the webhook sending fine to IFTTT.
All I’m after is opening a web page to be able to enter the IFTTT credentials, so they can be inputted by the end user and don’t have to be hard coded.
I’ve tried my usual method but because wled is already running its own server I can’t run another as the instances are already declared. So this server.on() must be for for this option.