Facility Control

 View Only
  • 1.  Dashboard Triple triggers

    Posted 05-20-2024 23:42

    Hey trying to have a button for posting url to trigger triple play (i.p. signage)   Trying to use http post doesn't seem to work.  Has anyone tried?



    ------------------------------
    Timothy Jones
    Broadcast manager/eic
    Minnesota Timberwolves
    ------------------------------


  • 2.  RE: Dashboard Triple triggers

    Posted 05-23-2024 14:20

    Hi Timothy,

    You may need to find out if the triple play device accepts POST or GET requests. Additionally, it may require additional arguments like headers.

    Here is an example of making a GET request with setting the content type header.

    var requestURL = "yourRequestURL.com"
    var headers = {}
    headers["Content-Type"] = "application/json";
    ogscript.asyncHTTP(requestURL, "GET", headers , null, null);

    Thank you,
    Aury R.



    ------------------------------
    Aury Rukazana
    Senior Software Developer
    Ross Video
    ------------------------------



  • 3.  RE: Dashboard Triple triggers

    Posted 05-23-2024 14:26

    Thanks.  I figured it out.   I was putting "https" instead of "http" .  I got it working now.  Appreciate it!



    ------------------------------
    Timothy Jones
    Broadcast manager/eic
    Minnesota Timberwolves
    ------------------------------