I’ve partially solved this problem on my end as I can get the uri of my blog sent in the push notification I edited the pushFunctionality.php in the plugin folder and added $posturl = get_the_permalink(); then added $posturl to the data array.
$posturl = get_the_permalink();
$url = 'https://api.parse.com/1/push/';
$data = array(
'expiry' => 1451606400,
'data' => array(
'alert' => $AlertMessage,
'badge' => $Badge,
'uri' => $posturl,
),
);
Now I can open my blog post link from the push notification but not in my app but the android default browser rendered to hand http requests.
I’ve made a custom Receiver to handle the onPushOpen and this is where I’m stuck as I’ve done this but it not working for me.