We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to make an incoming call from IFTTT to node red. This is what my flow looks like
[ { "id": "a22548ee.150878", "type": "ifttt-action", "z": "5b048bc9.d0e534", "broker": "2ef1d138.8024ce", "endpoint": "/test/call", "fields": [], "submit": "submit", "cancel": "cancel", "name": "Test call", "x": 220, "y": 400, "wires": [ [ "2bb69084.04b42" ] ] }, { "id": "2ef1d138.8024ce", "type": "ifttt-broker", "z": "", "host": "192.168.1.101", "port": "1234", "apiVersion": "v1", "name": "IFTTT" } ]
I was hoping this would get triggered when I do
GET http://192.168.1.101:1234/test/call or POST http://192.168.1.101:1234/test/call but it keeps responding with this page every time
GET http://192.168.1.101:1234/test/call
POST http://192.168.1.101:1234/test/call
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Error</title> </head> <body> <pre>Cannot POST /test/call</pre> </body> </html>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to make an incoming call from IFTTT to node red. This is what my flow looks like
I was hoping this would get triggered when I do
GET http://192.168.1.101:1234/test/call
orPOST http://192.168.1.101:1234/test/call
but it keeps responding with this page every timeThe text was updated successfully, but these errors were encountered: