kamal_tech_view
kamal_tech_view

Reputation: 4255

Facebook AppRequest for single friend

I am able to create app request in facebook but my requirement is to send app request for only 1 friend among all the friend list. Please need your help to send App request for only one user without option for selecting multiple friendlist Thanks for your concern.

Bundle params = new Bundle();
params.putString("message", getString(R.string.request_message));
Utility.mFacebook.dialog(Hackbook.this, "apprequests", params, new AppRequestsListener());

Upvotes: 2

Views: 233

Answers (1)

kamal_tech_view
kamal_tech_view

Reputation: 4255

Bundle params = new Bundle(); params.putString("to", String.valueOf(fbUid)); 
params.putString("message", getString(R.string.request_message));    
Utility.mFacebook.dialog(BoardActivity.this, "apprequests", params, new PostDialogListener());

Upvotes: 2

Related Questions