簡體   English   中英

Facebook朋友生日

[英]Facebook friends birthdays

我正在將Facebook SDK集成到我的應用程序中。 我需要獲取用戶的朋友姓名和他們的生日。 我添加了“ read_friendlists”,“ user_birthday”,“ user_friends”,“ friends_birthday”。

使用應用程序的Admin facebook ID登錄后,我就能正確獲取生日列表。 但是,當我使用任何其他帳戶登錄時,JSON響應中都沒有生日字段。

PS:我已經禁用了沙箱模式。 在應用程序儀表板中,它顯示“此應用程序已上線(所有用戶可見)”

對於JSON對象,請輸入一些代碼以幫助我們。 我個人使用它來獲取Facebook用戶生日首先,您是否設置了user_birthday權限? 如果要訪問user_birthday信息,這非常重要

如果用戶不為null,通常可以通過user.getBirthday()來獲得生日,因為從我看來,您正在使用新的facebook SDK

您可以設置權限,例如當您使用facebook authbutton時

 authButton.setReadPermissions(Arrays.asList("user_location", "user_birthday", "user_likes"));

或者您可以重新授權

Session.ReauthorizeRequest reauthRequest = new Session.ReauthorizeRequest(this, PERMISSIONS).
                setRequestCode(REAUTHORIZE_ACTIVITY).
                setLoginBehavior(SessionLoginBehavior.SSO_WITH_FALLBACK);
session.reauthorizeForPublish(reauthRequest);

其中PERMISSION是包含您的權限的數組

好的,試試這個

  String[] facebook_permissions = { "user_photos", "friends_birthday", "friends_photos" };

==========================================================================

public class FriendListAdapter extends BaseAdapter implements SectionIndexer {
private LayoutInflater mInflater;
private String[] sections;
private GetProfilePictures picturesGatherer = null;
FriendsList friendsList;
Hashtable<Integer, FriendItem> listofshit = null;

public FriendListAdapter(FriendsList friendsList) {
    Log.d(LOG_TAG, "FriendListAdapter()");
    this.friendsList = friendsList;
    sections = new String[getCount()];
    listofshit = new Hashtable<Integer, FriendItem>();
    for (int i = 0; i < getCount(); i++) {
        try {
    sections[i] = jsonArray.getJSONObject(i).getString("name").substring(0);
sections[i] = jsonArray.getJSONObject(i).getString("birthday").substring(1);
        } catch (JSONException e) {
            sections[i] = "";
            Log.e(LOG_TAG, "getJSONObject: " + e.getMessage());
        }
    }
    if (picturesGatherer == null) {
        picturesGatherer = new GetProfilePictures();
    }
    picturesGatherer.setAdapterForListener(this);
    mInflater = LayoutInflater.from(friendsList.getBaseContext());
}

public int getCount() {
    Log.d(LOG_TAG, "getCount()");
    if (jsonArray == null)
        return 0;
    return jsonArray.length();
}

public Object getItem(int position) {
    Log.d(LOG_TAG, "getItem()");
    return listofshit.get(position);
}

public long getItemId(int position) {
    Log.d(LOG_TAG, "getItemId()");
    return position;
}

public View getView(int position, View convertView, ViewGroup parent) {
    Log.d(LOG_TAG, "getView(" + position + ")");

    JSONObject jsonObject = null;
    try {
        jsonObject = jsonArray.getJSONObject(position);
    } catch (JSONException e) {
        Log.e(LOG_TAG, "getJSONObject: " + e.getMessage());
    }

    FriendItem friendItem;

    if (convertView == null) {
        convertView = mInflater.inflate(R.layout.single_friend, null);
        friendItem = new FriendItem();

        convertView.setTag(friendItem);
    }
    else {
        friendItem = (FriendItem) convertView.getTag();
    }

    friendItem.friendPicture = (ImageView) convertView.findViewById(R.id.picture_square);
    friendItem.friendName = (TextView) convertView.findViewById(R.id.name);
    friendItem.friendDob = (TextView) convertView.findViewById(R.id.dob);
    friendItem.friendLayout = (RelativeLayout) convertView.findViewById(R.id.friend_item);

    try {
        String uid = jsonObject.getString("uid");
        String url = jsonObject.getString("pic_square");
        friendItem.friendPicture.setImageBitmap(picturesGatherer.getPicture(uid, url));
    } catch (JSONException e) {
        Log.e(LOG_TAG, "getJSONObject: " + e.getMessage());
        friendItem.friendName.setText("");
        friendItem.friendDob.setText("");
    }

    try {
        friendItem.friendName.setText(jsonObject.getString("name"));
        friendItem.friendDob.setText(jsonObject.getString("birthday"));
    } catch (JSONException e) {
        Log.e(LOG_TAG, "getJSONObject: " + e.getMessage());
        friendItem.friendName.setText("");
        friendItem.friendDob.setText("");
    }

    listofshit.put(position, friendItem);

    return convertView;
}

public int getPositionForSection(int position) {
    return position;
}

public int getSectionForPosition(int position) {
    return position;
}

public Object[] getSections() {
    return sections;
}
}

class FriendItem {
TextView friendDob;
int id;
ImageView friendPicture;
TextView friendName;
RelativeLayout friendLayout;

}

==============================================================================

String query = "select name, uid, pic_square, birthday from user where uid in 
(select uid2 from friend where uid1=me()) order by name";

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM