Google Group Settings API enabled for service accounts?
问题 Most of the Google Management APIs seem to have been enabled for Service Accounts. For example, I can retrieve calendars like so: string scope = Google.Apis.Calendar.v3.CalendarService.Scopes.Calendar.ToString().ToLower(); string scope_url = "https://www.googleapis.com/auth/" + scope; string client_id = "999...@developer.gserviceaccount.com"; string key_file = @"\path\to\my-privatekey.p12"; string key_pass = "notasecret"; AuthorizationServerDescription desc = GoogleAuthenticationServer