I am trying to retrieve labels with GoogleMailSettingsService through C# code but I am getting a 403 Forbidden error. I am using a Admin username / password, the "Use provisioning API" option is checked, and we have a business account.
GoogleMailSettingsService service = new GoogleMailSettingsService(domain, app_name);
service.setUserCredentials(user_name, password);
AppsExtendedFeed labels = service.RetrieveLabels(user_name);
Can anyone please let me know what is wrong?