我正在使用facebook sdk并在SDK的示例帮助下开发了一个代码来登录并将access_token存储到数据库中
我有两个问题:
1)。当我尝试从数据库中获取access_token并将其传递给Facebook时,它不允许我使用Facebook sdk给出的那个示例在墙上发布,为什么会这样?
2)。我浏览了那个facebook.java代码,但我得到的是发布在墙上我必须打开一个对话框,因为没有其他方法可以立即传递我的消息并发布。请告诉我解决方案,或者当我想在不打开对话框的情况下在墙上张贴时,我应该打电话给我吗
mPostButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String message = "Post this to my wall";
Bundle params = new Bundle();
params.putString("message", message);
mAsyncRunner.request("me/feed", params, "POST", new WallPostRequestListener());
}
});
public class WallPostRequestListener extends BaseRequestListener {
public void onComplete(final String response) {
Log.d("Facebook-Example", "Got response: " + response);
String message = "<empty>";
try {
JSONObject json = Util.parseJson(response);
message = json.getString("message");
} catch (JSONException e) {
Log.w("Facebook-Example", "JSON Error in response");
} catch (FacebookError e) {
Log.w("Facebook-Example", "Facebook Error: " + e.getMessage());
}
final String text = "Your Wall Post: " + message;
Example.this.runOnUiThread(new Runnable() {
public void run() {
mText.setText(text);
}
});
}
}
上面的代码有什么问题..它没有发布在墙上并给我Wall Post:电话和模拟器都是空的
提前致谢..
答案 0 :(得分:37)
我应用了以下代码,并且可以在墙上成功发布我的消息。
public void postOnWall(String msg) {
Log.d("Tests", "Testing graph API wall post");
try {
String response = mFacebook.request("me");
Bundle parameters = new Bundle();
parameters.putString("message", msg);
parameters.putString("description", "test test test");
response = mFacebook.request("me/feed", parameters,
"POST");
Log.d("Tests", "got response: " + response);
if (response == null || response.equals("") ||
response.equals("false")) {
Log.v("Error", "Blank response");
}
} catch(Exception e) {
e.printStackTrace();
}
}
答案 1 :(得分:7)
我在http://www.integratingstuff.com/2010/10/14/integrating-facebook-into-an-android-application/更新了我的教程,现在它正在回答这个问题。 它基于和Ankit的答案基本相同,但通过实施整个过程从头到尾引导人们。
答案 2 :(得分:2)
嗯,并不是在没有通知用户的情况下在墙上张贴的东西。当用户允许您的应用程序时,Android Facebook sdk会显示另一个页面,其中有应用程序发送的文本,以及用户可以在其墙上书写的文本框,类似于我附加的屏幕截图
移动设备上的实际布局略有不同,但格式相同。这个过程在facebook android sdk的示例中很好地显示。
现在查看这篇文章中提出的问题:
Facebook Connect Android - 使用stream.publish @ http://api.facebook.com/restserver.php'> Facebook Connect Android -- using stream.publish @ http://api.facebook.com/restserver.php
在那个问题中寻找这些:postParams.put(),你的一些JAVA文件中会出现类似的行类型。这些是您可以将数据发布到Facebook的行。
例如:
postParams.put("user_message", "TESTING 123");
是消息,
postParams.put("attachment", "{\"name\":\"Facebook Connect for Android\",\"href\":\"http://code.google.com/p/fbconnect-android/\",\"caption\":\"Caption\",\"description\":\"Description\",\"media\":[{\"type\":\"image\",\"src\":\"http://img40.yfrog.com/img40/5914/iphoneconnectbtn.jpg\",\"href\":\"http://developers.facebook.com/connect.php?tab=iphone/\"}],\"properties\":{\"another link\":{\"text\":\"Facebook home page\",\"href\":\"http://www.facebook.com\"}}}");
是您为应用程序,说明,标题,标题等提供图标的行。
答案 3 :(得分:1)
我使用Ankit的代码在Facebook墙上发布,但是他的代码给了我错误android.os.NetworkOnMainThreadException
。
在搜索此问题后,解决方案告诉我将您的代码放在AsyncTask
中以摆脱此问题。修改完他的代码后,它对我来说很好。
修改后的代码如下所示:
public class UiAsyncTask extends AsyncTask<Void, Void, Void> {
public void onPreExecute() {
// On first execute
}
public Void doInBackground(Void... unused) {
// Background Work
Log.d("Tests", "Testing graph API wall post");
try {
String response = facebook.request("me");
Bundle parameters = new Bundle();
parameters.putString("message", "This test message for wall post");
parameters.putString("description", "test test test");
response = facebook.request("me/feed", parameters, "POST");
Log.d("Tests", "got response: " + response);
if (response == null || response.equals("") || response.equals("false")) {
Log.v("Error", "Blank response");
}
} catch(Exception e) {
e.printStackTrace();
}
return null;
}
public void onPostExecute(Void unused) {
// Result
}
}
答案 4 :(得分:1)
此课程帮助我在Facebook墙上发送消息没有对话框:
public class FBManager{
private static final String FB_ACCESS_TOKEN = "fb_access_token";
private static final String FB_EXPIRES = "fb_expires";
private Activity context;
private Facebook facebookApi;
private Runnable successRunnable=new Runnable(){
@Override
public void run() {
Toast.makeText(context, "Success", Toast.LENGTH_LONG).show();
}
};
public FBManager(Activity context){
this.context = context;
facebookApi = new Facebook(FB_API_ID);
facebookApi.setAccessToken(restoreAccessToken());
}
public void postOnWall(final String text, final String link){
new Thread(){
@Override
public void run(){
try {
Bundle parameters = new Bundle();
parameters.putString("message", text);
if(link!=null){
parameters.putString("link", link);
}
String response = facebookApi.request("me/feed", parameters, "POST");
if(!response.equals("")){
if(!response.contains("error")){
context.runOnUiThread(successRunnable);
}else{
Log.e("Facebook error:", response);
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}.start();
}
public void save(String access_token, long expires){
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
Editor editor=prefs.edit();
editor.putString(FB_ACCESS_TOKEN, access_token);
editor.putLong(FB_EXPIRES, expires);
editor.commit();
}
public String restoreAccessToken(){
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
return prefs.getString(FB_ACCESS_TOKEN, null);
}
public long restoreExpires(){
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
return prefs.getLong(FB_EXPIRES, 0);
}
}