I’m trying to integrate posting to one’s wall from within my app.i try this code but i get response like this
public void postMessageOnWall(String msg) {
Log.d("Tests", "Testing graph API wall post");
try {
String response = mFacebook.request("feed");
Bundle parameters = new Bundle();
parameters.putString("message", "dfsagfsadfsafsadf by thamil");
parameters.putString("description", "test test test");
response = mFacebook.request("feed", parameters);
Log.d("Tests", "got response: " + response);
if (response == null || response.equals("") ||
response.equals("false")) {
Log.v("Error", "Blank response");
}
} catch(Exception e) {
e.printStackTrace();
}
}
' {"error":{"message":"No node specified","type":"Exception"}}'
use FacebookRocket API http://www.androidpeople.com/android-facebook-api-example-using-fbrocket#idc-cover