3

我曾尝试在 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" />

提前致谢。

4

1 回答 1

3

如果您只想将应用程序中的某些内容分享到 Facebook,您可以使用 Cards 轻松完成此操作。

我在这里写了一篇博客文章:http: //devblog.blackberry.com/2013/02/twitter-and-facebook-cards/

基本上,您使用 BlackBerry 调用框架来调用 Card,并将一些数据传递给该卡。

function invokeFacebook() {
    blackberry.invoke.invoke({
        target: "Facebook",
        action: "bb.action.SHARE",
        type: "text/plain",
        data: "I’m eating tacos with Alex."
    }, onSuccess, onError);
}

如果您想共享图像,您只需将“数据”属性替换为:

uri: 'file://' + pathToFile,

我们的 GitHub 存储库中还有一个示例应用程序:https ://github.com/ctetreault/BB10-WebWorks-Samples/tree/master/invoke/invoker

于 2013-02-25T19:35:24.287 回答