私はこの 3 つのスコープを使用しています。
scopes[0] = "https://www.googleapis.com/auth/drive";
scopes[1] = "https://www.googleapis.com/auth/userinfo.email";
scopes[2] = "https://www.googleapis.com/auth/userinfo.profile";
それらを承認し、次に従ってユーザーのメールアドレスを取得しようとします
:
https://developers.google.com/drive/v2/reference/permissions/list
PermissionList permissions = _service.Permissions.List("root").Fetch();
IList<Permission> a = permissions.Items;
また、emailAddress が表示されません。
「Try it!」で同じスコープ (最初の 2 つだけでも) を含めている場合。セクションで
は、emailAddress を含む結果が得られます
私は何が欠けていますか?