How to programmatically launch a chromecast app from command line
Posted
by
pushmatrix
on Stack Overflow
See other posts from Stack Overflow
or by pushmatrix
Published on 2014-04-23T16:43:38Z
Indexed on
2014/06/13
15:25 UTC
Read the original article
Hit count: 243
chromecast
|google-cast
I want to launch a Chromecast app but NOT using the chrome extension or iOS or Android. Doing this from command line.
I noticed that you can send a POST to your chromecast, and it will launch an app. For example if I do
curl -H “Content-Type: application/json” http://CHROMECAST_IP:8008/apps/YouTube -X POST -d ‘v=oHg5SJYRHA0'
Then it will start up youtube.
But for some reason I can't do this with custom apps (in dev mode). I thought I'd be able to send a POST to http://CHROMECAST_IP:8008/apps/MY_REGISTERED_APP_ID
, but no luck. I just get a 404 response. Hmmm...
My app is just a simple webpage (it is not streamed media). I want to run a little headless server that starts my chromecast app everyday via a CRON task.
Any help is greatly appreciated! Thanks :)
© Stack Overflow or respective owner