upon further investigation chrome dev tools reveals
Access to XMLHttpRequest at 'http://(MYIP):49152/sysinfo/json/svcinfo' from origin 'http://online.tivo.com' has been blocked by CORS policy: The request client is not a secure context and the resource is in more-private address space `private`.
After researching that i found this link
Chrome CORS error on request to localhost dev server from remote site
it went into a bit about how
"Chrome has implemented CORS-RFC1918, which prevents public network resources from requesting private-network resources - unless the public-network resource is secure (HTTPS) and the private-network resource provides appropriate (yet-undefined) CORS headers."
So basically a public network "online.tivo.com" cannot access my local network (where my tivo is) due to this new CORS-RFC1918 standard.
The is a fix to disable this behavior for now
chrome://flags/#block-insecure-private-network-requests
I set the first one "Block insecure private network requests." to disable. restarted chrome and now my online.tivo.com can stream shows again.
Hope this helps someone else.
Access to XMLHttpRequest at 'http://(MYIP):49152/sysinfo/json/svcinfo' from origin 'http://online.tivo.com' has been blocked by CORS policy: The request client is not a secure context and the resource is in more-private address space `private`.
After researching that i found this link
Chrome CORS error on request to localhost dev server from remote site
it went into a bit about how
"Chrome has implemented CORS-RFC1918, which prevents public network resources from requesting private-network resources - unless the public-network resource is secure (HTTPS) and the private-network resource provides appropriate (yet-undefined) CORS headers."
So basically a public network "online.tivo.com" cannot access my local network (where my tivo is) due to this new CORS-RFC1918 standard.
The is a fix to disable this behavior for now
chrome://flags/#block-insecure-private-network-requests
I set the first one "Block insecure private network requests." to disable. restarted chrome and now my online.tivo.com can stream shows again.
Hope this helps someone else.