我已经读过您可以创建一个显示Facebook Feed的Google Apps脚本,然后将其嵌入Google网站,但我无法找到有关如何执行此操作的更多信息我自己无法弄清楚。
当我尝试使用Facebook Feed制作Apps Script网络应用时,我收到如下错误:
Uncaught DOMException: Failed to set the 'domain' property on 'Document': Assignment is forbidden for sandboxed iframes.
这是通过复制" Facebook Javascript SDK"和" Page Feed"从Facebook开发人员转换为HTML文件并将其部署为Web应用程序。我认为它与Apps脚本如何对您的代码进行沙盒化有关,但我不知道我必须在这里做些什么。
就此而言,即使我尝试使用一些静态HTML创建一个更简单的Apps脚本,当我尝试将其从Drive嵌入到网站时,我收到一个错误"某些选定的项目无法嵌入& #34;
答案 0 :(得分:2)
新版Google协作平台不支持Google Apps脚本。
答案 1 :(得分:0)
新的Google协作平台现在支持嵌入应用程序脚本(确保将应用程序脚本部署为Web应用程序,设置正确的权限,并使用/ exec url而不是您的/ dev版本来嵌入)。
由于沙盒,我发现我无法将facebook SDK用于视频。我使用iframe解决方案代替视频,但也许你可以尝试使用这样的东西(我假设你已经在fb中注册了你的应用程序,这样你就可以获得生成代币):
在apps脚本中,创建一个.gs文件和一个html文件,大致如下所示(我实际上没有使用返回的feed,所以检查返回的数据结构并相应地调整)
//**feed.gs**
function doGet(e) {
return HtmlService
.createTemplateFromFile('my-html-file')
.evaluate();
}
function getToken() { //use your fb app info here (and make sure this script is protected / runs as you
var url = 'https://graph.facebook.com'
+ '/oauth/access_token'
+ '?client_id=0000000000000000'
+ '&client_secret=0x0x0x0x0x0x0x0x0x0x0x0x'
+ '&grant_type=client_credentials';
var response = UrlFetchApp.fetch(url, {'muteHttpExceptions': true});
var json = response.getContentText();
var jsondata = JSON.parse(json);
return jsondata.access_token;
}
function getFeed() {
var url = 'https://graph.facebook.com'
+ '/your-page/feed'
+ '?access_token=' + encodeURIComponent(getToken());
var response = UrlFetchApp.fetch(url, {'muteHttpExceptions': true});
var json = response.getContentText();
var jsondata = JSON.parse(json);
//Logger.log(jsondata); //check this and adjust following for loop and html showFeed function accordingly
var posts = {};
for (var i in jsondata) {
posts[i] = {"post":jsondata[i].message};
}
return posts;
}
<!--**my-html-file.html**-->
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
// The code in this function runs when the page is loaded (asynchronous).
$(function() {
google.script.run
.withSuccessHandler(showFeed)
.withFailureHandler(onFailure)
.getFeed(); //this function is back in .gs file and must return an array or object which gets auto-passed to the showFeed function below
});
function showFeed(posts) { //parameter name must match array or object returned by getFeed in gs file
var html = '';
for (var p in posts) {
html += '<p>' + posts[p].post + '</p>'; //instead of a string, you can build an array for speed
}
$('#feed').empty().append(html); //if you used an array for the html, you'd split it here
}
function onFailure(error) {
$('#feed').empty().append("Unable to retrieve feed: " + error.message); ;
}
</script>
</head>
<body>
<div id="feed">
Loading...
</div>
</body>
</html>