send an invite through android application to facebook friends

后端 未结 1 676
深忆病人
深忆病人 2021-02-06 17:26

How to send an invitation to facebook friends through my App on Android..

1条回答
  •  天涯浪人
    2021-02-06 17:44

    Here is how you can do it:

    public void inviteFriends(Activity activity, ArrayList friendsIds){
        // Safe programming
        if(friendsIds == null || friendsIds.size() == 0)        
            return;
    
        Bundle parameters = new Bundle();
    
        // Get the friend ids
        String friendsIdsInFormat = "";
        for(int i=0; i

    Facebook dialog reference

    0 讨论(0)
提交回复
热议问题