任何人都可以建议一个为我的应用程序创建 facebook 共享实现的好方法。
我已经为 facebook 开发者网站创建了测试帐户和 API 密钥...
我需要以这样的方式实现,当单击 fbshare 按钮时,应将特定内容(动态内容)作为状态链接发布在相应链接的 Facebook 帐户中......
除了 fb 开发人员,我还需要其他方式来实现它...
预期的建议......(预期可能会有更好的结果)
任何人都可以建议一个为我的应用程序创建 facebook 共享实现的好方法。
我已经为 facebook 开发者网站创建了测试帐户和 API 密钥...
我需要以这样的方式实现,当单击 fbshare 按钮时,应将特定内容(动态内容)作为状态链接发布在相应链接的 Facebook 帐户中......
除了 fb 开发人员,我还需要其他方式来实现它...
预期的建议......(预期可能会有更好的结果)
您好在 facebook 处理程序类的代码中使用此方法
public void postToFBWall(final String message, final String image){
Thread thread = new Thread(){
public void run(){
try{
String descripton = "This is the plain text copy next to the image. All work and no play makes Jack a dull boy.";
Bundle parameters = new Bundle();
parameters.putString("message", message);// message to be posted on facebook wall
parameters.putString("link", image);//link of image to be posted on facebook wall
parameters.putString("name", "My wish");// name of link
parameters.putString("description", descripton);// description of you post
String response1 = facebook.request("me/feed", parameters, "POST");
Log.v("facebook response", response1);
}catch (Exception e) {
}
}
};thread.start();
}