我正在尝试使用 filepicker.io 从用户网络摄像头录制视频并将其存储在我的 Amazon S3 存储桶中。
我被困在这里。下面的代码在 Firefox 中运行良好,但在 chrome 和 IE 上运行良好。abc iframe src 不是由 filepicker api 设置的,所以内容保持空白。我验证了 chrome 上启用了第 3 部分 cookie。任何帮助将不胜感激。
<html>
<head><title>Test</title></head>
<body>
<iframe id="abc" name="abc" height="500" width="500" frameborder="0"> abc </iframe>
<script src="https://api.filepicker.io/v0/filepicker.js"></script>
<script type="text/javascript">
filepicker.setKey("AeE9yA21xTpiOQ3JQm938z");
// alert('before');
filepicker.getFile(filepicker.MIMETYPES.ALL, {
'multiple': false, 'container': 'abc',
'services':[filepicker.SERVICES.VIDEO]
}, function(response){
alert(JSON.stringify(response));
});
// alert('end');
</script>
</body>
</html>