android - Sending request to Facebook friend has wrong message -
i want send request friend web dialog. okay except message have no idea comes where!
this bundle:
private void sharetofacebook() { if(facebookuser != null) { bundle params = new bundle(); params.putstring("method", "apprequests"); params.putstring("message", facebookuser.getname() + " sent request in fancied."); params.putstring("to", facebookuser.getfacebookid()); listener.onfacebookrequestdialog(params); } }
i'm passing bundle parameter listener , listener , proper things , dialog displays. can see in attached image, there text message. how can remove or modify it. checked page of requests dialog, didn't find parameter useful @ end of page.
any comments or suggestion appreciated. thanks.
this line:
params.putstring("message", facebookuser.getname() + " sent request in fancied.");
sends text.
the large, nicely formatted text above automatically generated .onfacebookrequestdialog
try putting else in putstring
, see.
Comments
Post a Comment