在Facebook的自定义图表中添加标题

时间:2015-11-16 14:46:36

标签: facebook facebook-graph-api facebook-android-sdk facebook-sdk-4.0 android-facebook

我使用自定义图表api发布故事。在发布故事时,API始终会选择“一对一 - 没有对象标题”#34;而不是"一对一"。我需要选择"一对一"因为它可以选择更新" level.title"。

问题

  1. 如何让我的代码选择"一对一"
  2. 如何更正我的帖子" 詹姆斯杰克在益智游戏 - 球狂热"中清除了1级詹姆斯杰克没有在益智游戏 - 球狂热"
  3. 中清除了一个级别

    enter image description here

    代码

        // Create an object
        ShareOpenGraphObject object = new ShareOpenGraphObject.Builder()
                .putString("og:type", "puzzlegameballmania:level")
                .putString("og:title", "Puzzle Game - Ball Mania")
                .putString("og:image", "http://i67.tinypic.com/svl2qt.png")
                .putString("og:url", "https://play.google.com/store/apps/details?id=memory.game.collection.free")
                .putString("og:description", "Color of the balls matters more. Lets break the goal and go higher !")
                .putString("puzzlegameballmania:level:title", "LEVEL 1")
                .build();
    
        // Create an action
        ShareOpenGraphAction action = new ShareOpenGraphAction.Builder()
                .setActionType("puzzlegameballmania:clear")
                .putObject("puzzlegameballmania:level", object)
                .build();
    
        // Create the content
        ShareOpenGraphContent content = new ShareOpenGraphContent.Builder()
                .setPreviewPropertyName("puzzlegameballmania:level")
                .setAction(action)
                .build();
    
        ShareDialog.show(AndroidLauncher.this, content);
    

    enter image description here

0 个答案:

没有答案