php - Podio item.update webhook to open a new link -


i have setup webhook in podio item.update in hook_update_item.php file. want if item has been updated, want open link preferably in new tab, here code have:

<?php  require ("../podio/podioapi.php");  podio::setup(client id, client secret); podio::authenticate_with_app(app id, app token);  switch ($_post['type']) {     case 'hook.verify':         // validate webhook       podiohook::validate($_post['hook_id'], array('code' => $_post['code']));     case 'item.update':         // something. item_id available in $_post['item_id']          if ($_post['item_id'] == '238777597'){            //open new link here            $ch = curl_init('http://www.google.com.ph');           curl_exec($ch);         } }  ?> 

podio webhook has been validated assuming when webhook firing goes 'item.update'. far no luck on bringing new tab of google page. appreciate tips , suggestions!

i'm assuming code running on server somewhere. write webpage asks server every n seconds/minutes if there new tabs should open. server receives request, looks see if there tabs open , sends them in array webpage. there in javascript can open new tabs. browser might block them thought if don't change pop-up settings. there might better way using push notifications, start.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -