Forum Discussion
dashielpm
9 years agoVisitor
I have been through that page. Now there is some form of a server interaction here, call it the client for roku, but they are trying to download the feed json and it is failing. I'm using the same JSON that they have as their demo content, and when I link to their demo content it works fine, repoint to my server and its fails to download but I get no information from roku.
<?php
header('Content-Type: application/json');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Allow-Orgin: *');
?>
I have that at the head and have tried a few different variations with no success. The problem I am having is lack of documentation for the direct publishing arm of roku. So my assumption, right or wrong, is that roku client requires some sort of permissions to my server that I can't find documentation on. Am I incorrect in this thinking?
<?php
header('Content-Type: application/json');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Allow-Orgin: *');
?>
I have that at the head and have tried a few different variations with no success. The problem I am having is lack of documentation for the direct publishing arm of roku. So my assumption, right or wrong, is that roku client requires some sort of permissions to my server that I can't find documentation on. Am I incorrect in this thinking?