Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to tell the facebook android SDK to send frictionless requests on a user->user app request ?

I've integrated an app on android by following the tutorial on the facebook website. There is some documentation on how to send facebook user->user requests using mFacebook.dialog(context, "apprequests", params, new AppRequestsListener()); , but there is no mention of how to make these requests frictionless. On the web the frictionlessRequests:true option seems to do the trick. I tried setting this as a parameter on the call to mFacebook.dialog() (using the params reference), but that did not help. The facebook requests dialog documentation page claims that this feature is available on android. There is no mention anywhere on how to enable it.

Frictionless Requests are supported with the Javascript SDK on Desktop Canvas and mobile web as well as with the iOS and android SDKs on native mobile apps.

Is there an equivalent call that can be used for android so the user gets to see the 'Don't ask again' (see pic below) option on the request dialog ? Right now the requests dialog is shown every time even if a request was sent previously.

Frictionless requests

share|improve this question

1 Answer

up vote 3 down vote accepted

I've struggled with the same thing today. I finally found a way that works for me. I'm using the sdk 3.0.2b, I followed the guide here https://developers.facebook.com/docs/howtos/androidsdk/3.0/send-requests/

In step 2 the guide suggests the code:

private void sendRequestDialog() {
   Bundle params = new Bundle();
   params.putString("message", "Learn how to make your Android apps social");
   WebDialog requestsDialog = (
   ...

After a lot of trial and error adding param frictionless=1 worked for me:

private void sendRequestDialog() {
   Bundle params = new Bundle();
   params.putString("message", "Learn how to make your Android apps social");

   params.putString("frictionless", "1"); //Turn on frictionless

   WebDialog requestsDialog = (
   ...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.