我正在使用Facebook Javascript SDK开发智能电视应用程序。
我想实现在我的Feed上传消息的功能,所以我像这样使用FB.api:
function FacebookUpload(msg){
var path = '/me/feed';
FB.api(path, 'Post', { message: msg, access_token: token}, function(response) {
if (!response || response.error) {
alert("error");
} else {
alert("successful with id [" + response.id + "]");
}
});
}
它在PC上运行良好,但在智能电视中不起作用。 错误信息是这样的。
文件:http://connect.facebook.net/en_US/all.js
行号:62
错误详细信息:错误:域包含无效字符。
为什么会出现此消息,如何解决此错误?