如何从Android应用程序中的Facebook SDK获取电子邮件ID?

时间:2015-06-06 08:34:36

标签: android facebook email permissions

private FacebookCallback<LoginResult> callback = new FacebookCallback<LoginResult>() {
    @Override
    public void onSuccess(LoginResult loginResult)
    {


        GraphRequest.newMeRequest(
                loginResult.getAccessToken(), new GraphRequest.GraphJSONObjectCallback() {

                    public void onCompleted(JSONObject me, GraphResponse response) {
                        if (response.getError() != null) {
                            textView.setText("Error");
                        } else {
                            String email = me.optString("email").toString();
                            textView1.setText(email);

                        }
                    }
                }).executeAsync();


    }

0 个答案:

没有答案