gpt4 book ai didi

android facebook sdk 3.0自定义喜欢按钮

转载 作者:行者123 更新时间:2023-11-29 18:04:19 24 4
gpt4 key购买 nike

我正在使用适用于 Android 的 Facebook SDK 3.0。

如何制作自定义点赞按钮

Request request = new Request(session, page_id + "/likes", null, HttpMethod.POST,  new Callback()
{
@Override
public void onCompleted(Response response)
{
Log.i(DEBUG_TAG, response.toString());
// TODO Auto-generated method stub
if (response.getGraphObject() != null)
{
//Log.i(DEBUG_TAG, response.toString());
}
}
});
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();

page_id = 417732304946490

有 OAuthException(#3) 应用程序不具备进行此 API 调用的能力。

没有办法在应用程序中使用吗?

最佳答案

Facebook 图形 API 不提供点赞 facebook 页面的功能。相反,您可以使用您的页面 URL 打开一个 webview,以便您可以登录并喜欢您的页面。

 // To open webview
String url = "your page URL";
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(i);

关于android facebook sdk 3.0自定义喜欢按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14160667/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com