0
Gmailアカウントに複数のグループがあり、割り当てられた連絡先ごとにグループごとに取得したいと考えています。グループを取得するために、私は次のコードを使用します。Gmailのグループからすべての連絡先を取得
RequestSettings rs = new RequestSettings("TEST", "[email protected]", "password");
// AutoPaging results in automatic paging in order to retrieve all contacts
rs.AutoPaging = true;
ContactsRequest cr = new ContactsRequest(rs);
Feed<Group> fg = cr.GetGroups();
は、今私は(例えば、グループ「フレンズ」のための)割り当てられた連絡先を取得したいが、私はそれらを取得する方法は考えていますか?助言がありますか?