使用facebook请求的android应用程序链接共享

时间:2015-01-11 08:49:37

标签: android facebook

任何人都知道通过向Facebook好友发送请求使用Facebook分享Android应用程序市场链接的方式。

如果有任何巨人对我很有帮助。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

查看https://developers.facebook.com/docs/graph-api/reference/v2.2/user/feed页面。在发布部分,点击Android SDK标签,您可以看到以下代码段:

Bundle params = new Bundle();
params.putString("message", "This is a test message");
/* make the API call */
new Request(
    session,
    "/me/feed",
    params,
    HttpMethod.POST,
    new Request.Callback() {
        public void onCompleted(Response response) {
            /* handle the result */
        }
    }
).executeAsync();

我认为您可以使用“链接”字段(结合使用名称,标题,说明或消息)。

Bundle params = new Bundle();
params.putString("name", "Name of your app");
params.putString("message", "Your message");
params.putString("link", "https://play.google.com/store/apps/details?id=<your_package_name>");

此外,您还可以将应用生成的故事与应用的Google Play列表相关联。它被称为“深层链接”:https://developers.facebook.com/docs/applinks/android