我曾尝试在facebook上分享但是无法分享任何内容。 我使用的代码是: -
在Javascript中
FB.init({
appId: 'some id',
cookie: true,
status:true,
xfbml:true,
oauth:true
});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
link: 'http://www.example.com',
picture: imageToShare,
name: 'name',
caption: 'This Link is Shared through the some application.',
description: ''
};
function callback(response) {
//document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
在配置文件
中<access uri="http://connect.facebook.net" />
提前致谢。
答案 0 :(得分:3)
如果你想做的就是从你的应用程序分享到Facebook的东西,你可以很容易地用卡片做到这一点。
我在这里写了一篇博文:http://devblog.blackberry.com/2013/02/twitter-and-facebook-cards/
基本上,您使用BlackBerry调用框架来调用卡,并将一些数据传递到该卡。
function invokeFacebook() {
blackberry.invoke.invoke({
target: "Facebook",
action: "bb.action.SHARE",
type: "text/plain",
data: "I’m eating tacos with Alex."
}, onSuccess, onError);
}
如果您想共享图片,只需将'data'属性替换为:
uri: 'file://' + pathToFile,
我们的GitHub回购中还有一个示例应用:https://github.com/ctetreault/BB10-WebWorks-Samples/tree/master/invoke/invoker