5

Google プラスでログインでき、Google プラス サークルにいるすべてのユーザーのリストを取得できますが、サークル内のすべてのユーザーのメール アドレスも取得したいのですが、それを行う方法はありますか? このコードを試しましたが、うまくいきません。

public void onPeopleLoaded(ConnectionResult status, final PersonBuffer personBuffer,
            String nextPageToken) 
    {
        if (status.getErrorCode() == ConnectionResult.SUCCESS) 
        {           
            try
            {
                //Add all friends ids in an arraylist
                int count = personBuffer.getCount();
                //Loop through all the ids of google plus friends
                for (int i = 0; i < count; i++) 
                {
                    //mListItems.add(personBuffer.get(i).getDisplayName());
                    //mListIds.add(personBuffer.get(i).getId());  

                    friends_gplus_Ids += personBuffer.get(i).getId() + ",";
                    //Log.d("Emails", personBuffer.get(i).getOrganizations().toString());
                    //personBuffer.get(i).getEmails().size();

                    if((personBuffer.get(i).getEmails().size() > 0)) 
                    {
                        Log.d("Emails", personBuffer.get(i).getEmails().get(0).toString());
                    }
                    else
                    {
                        Log.d("Emails", "Null");
                    }                                   
                }
            }
            finally
            {
                personBuffer.close(); 
            }
}
4

1 に答える 1

1

おそらく、Google+ スコープとContacts APIスコープの両方をリクエストする必要があります ( https://www.google.com/m8/feeds)。次に、ユーザーの連絡先をリクエストし、Google+ プロフィールの URLを持つ連絡先を見つける必要があります。これは次のようになります。

<gContact:website href='http://www.google.com/profiles/1234567890' rel='profile'/>

次に、その連絡先の電子メール アドレスが兄弟要素として存在するかどうかを確認します。

于 2013-10-01T21:04:54.833 に答える