I would like to post a message on the my own wall via an Android application. I have the method loginToFacebook() to login. On click on a button, if the user is logged in I want a message to be posted. I am not really familiar with facebook API so I've looked the facebook developers documentation and other sites on internet to propose the code that follows. Yet, no message is posted on my wall. Obviously I miss something but I don't know what as I have no error on my LogCat.
public class ShareActivity extends Activity implements OnClickListener{
Facebook facebook = new Facebook("477110419013909");
AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(facebook);
String FILENAME = "AndroidSSO_data";
SharedPreferences mPrefs;
public void onClick(View arg0) {
loginToFacebook();
if (facebook.isSessionValid()) {
Bundle bundle = new Bundle();
bundle.putString("message","Hey Facebook!");
try {
String strRet = facebook.request("/me/feed",bundle,"POST");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
Log.e("Facebook", "Error: " + e.getMessage());
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
Log.e("Facebook", "Error: " + e.getMessage());
} catch (IOException e) {
// TODO Auto-generated catch block
Log.e("Facebook", "Error: " + e.getMessage());
}
}
public void loginToFacebook() {
mPrefs = getPreferences(MODE_PRIVATE);
String access_token = mPrefs.getString("access_token", null);
long expires = mPrefs.getLong("access_expires", 0);
if (access_token != null) {
facebook.setAccessToken(access_token);
}
if (expires != 0) {
facebook.setAccessExpires(expires);
}
if (!facebook.isSessionValid()) {
facebook.authorize(this,
new String[] { "email", "publish_stream" },
new DialogListener() {
@Override
public void onCancel() {
// Function to handle cancel event
}
@Override
public void onComplete(Bundle values) {
// Function to handle complete event
// Edit Preferences and update facebook acess_token
SharedPreferences.Editor editor = mPrefs.edit();
editor.putString("access_token",
facebook.getAccessToken());
editor.putLong("access_expires",
facebook.getAccessExpires());
editor.commit();
}
@Override
public void onError(DialogError error) {
// Function to handle error
}
@Override
public void onFacebookError(FacebookError fberror) {
// Function to handle Facebook errors
}
});
}
}
}
I tried to do
if (facebook.isSessionValid()) {
Bundle bundle = new Bundle();
bundle.putString("message","Hey Facebook!");
facebook.dialog((Activity) this, "feed", bundle,
new DialogListener() {
public void onComplete(Bundle values) {
}
public void onFacebookError(FacebookError error) {}
public void onError(DialogError e) {}
public void onCancel() {}
});
}
Did not work either
I have use this activity class for post image :
}
And here is Bundle params that I pass from previous Activity
byte[] data = null;
Bundle params = new Bundle();
params.putByteArray("photo", data); params.putString("caption", status);
Other values that you can put on Bundle
params.putString("message", "This string will appear as the status message"); params.putString("link", "This is the URL to go to"); params.putString("name", "This will appear beside the picture"); params.putString("caption", "This will appear under the title"); params.putString("description", "This will appear under the caption"); params.putString("picture", "This is the image to appear in the post");