Webcontrol triggering Stringify

jgrosser

New Member
I use Stringify to control most of my devices through Z wave or the HTTP maker "thing". I need to have a reliable way to monitor contacts throughout my home so I have them connected to a WC8 board.  I want to send a trigger to Stringify when a input changes but I have been having a hard time getting the WEBSET command to work on the Webcontrol board.  One of my Stringify test flows has the following link.
 
https://webhooks.stringify.com/v1/events/fEKBTcS1iCb3F99yGsNpV9svvetMzGwG/1/1c22ca0e9a232978dc61d855ccaff411/AWrrnFOuxCdsUoS0Mpnx
 
I have also tried using tinyurl because I received a message from the WC8 board that there are two many characters in the link above.
tinyurl.com/6996100
 
I used Wireshark to see if there were any attempted connections from the WC8 board to the destinations but I don't see anything getting created.  I see my requests to change an output state to initiate the WEBSET in the PLC code but nothing else.
 
Here is the URL setup
 
 
Box 1                                                Box 2        Box 3
104.20.218.42:80:tinyurl.com          /6996         blank
 
Here is the code snipet
START   
 TSTEQ OP8[1000] 0 
 SET OP8 1 
 TSTEQ OP1 0 
 DELAY 5000  
 WEBSET URL2 100 
 DELAY 5000  
 SET OP1 1 
 END   
 
You will need to use wireshark from your server to see the network traffic between WC8 and server. From PC it will not see any other activities using current network switches
 
When I enter tinyurl.com/6996 I don't get a response, I get a response when I enter tinyurl.com/6996100.  Also I just received a WC32 and I appears to have more options available.  Do I have a better chance accomplishing what I want with that board?
 
Back
Top