
iFrame embed with URL signing
According to the documentation there are two ways to embed videos:
1. Javascript
2. iFrame
For securing the videos we are using URL signing.
We use exactly the same function to generate the signature keys for the Javascript and iFrame embed.
However, we are getting a "Permission Denied" error with the iFrame videos, the Javascript embed works just fine.
Here is the url that is being created for script tags:
<script type="text/javascript" src='http://content.bitsontherun.com/players/cPxGRsdl-a5QrTBqM.js?exp=1372076580&sig=9c16c5fc7338a45828fb3dd3a3979a67'></script>
And here is the url that is being created for iframe tags:
<iframe src="http://content.bitsontherun.com/players/cPxGRsdl-a5QrTBqM.html?exp=1372076580&sig=62454ea9d41c8d5aeecf838956a9b446" width="480" height="360" frameborder="0" scrolling="auto"></iframe>
Any idea why we get "Permission Denied" error in the case of iFrame embed?