Question

This is actually a 2 parts question.

  1. I cant figure out how to send a request to a test user using the request dialog. i was able to send it to a friend but how can i select a test user which is not part of my friends list ? from the tutorial in Handle Request App Links it seems like you just need to define a Test User is the App Dashboard and he should selectable in the Send Request Dialog. what am i doing wrong here ?

  2. When i checked a request sent to a friend i saw that the actual notification he is getting is "My Name invited you to try App Name". and thats it. What happened to the message and title parameters used in the Request Dialog ?

    Bundle params = new Bundle();
    params.putString("message", "xxxxxxxxxxxxx");
    params.putString("title", context.getString(R.string.app_name));
    
    WebDialog requestsDialog = (
        new WebDialog.RequestsDialogBuilder(context,
            Session.getActiveSession(),
            params)).build();
    

    are they just for the dialog itself ? if so, how disappointing it this. i hope im wrong.

Was it helpful?

Solution

To whoever wondered about the first part of this question (the "duplicate" one) - In order to send a request to a test user, you have to do it from another test user. you need to define 2 test users in the app dashboard and make them friends. then you need to login to one of them in which ever way you want and you will able to see the other one in the send request dialog.

FB tutorials are just crap.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top