android 申请 link 使用 facebook 请求分享

android application link share using facebook request

任何人都知道如何通过向 Facebook 好友发送请求来使用 facebook 分享 android 应用程序市场 link。

如果哪位大佬帮了我大忙。 提前致谢。

查看 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();

我认为您可以使用 "link" 字段(名称、标题、说明或消息的组合)。

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>");

此外,您还可以 link 您的应用生成的故事以及您应用的 Google 播放列表。它被称为 "Deep Linking": https://developers.facebook.com/docs/applinks/android