Android get Facebook friends who have app downloaded

前端 未结 3 1468
我在风中等你
我在风中等你 2020-12-23 23:48

I am using the Facebook Android SDK. Is there an easy way to get a user\'s friends who have downloaded the app? For example, the app Draw Something implements this. I can\'t

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-24 00:40

    I implemented it in this way

    Bundle params = new Bundle();
    
    params.putString("fields", "name, picture, location, installed");
    

    And during displaying of the items on the list,in the getView() method i did this

    boolean b = jsonObject.getBoolean("installed");
    
    if (b){
        Log.d("VIVEK",jsonObject.getString("name"));
    }
    

提交回复
热议问题