4月20日之后GmailSettingsService类仍然可用,构造函数是否仍如下所示(来自https://code.google.com/p/gdata-java-client/source/browse/trunk/java/sample/appsforyourdomain/gmailsettings/GmailSettingsService.java?r=505)
public GmailSettingsService(
String applicationName, String domain, String username, String password)
throws AuthenticationException {
super(applicationName, Constants.PROTOCOL, Constants.APPS_APIS_DOMAIN);
this.domain = domain;
new GenericFeed().declareExtensions(getExtensionProfile());
this.setUserCredentials(username + "@" + domain, password);
}
有没有办法在4月20日的弃用API到期日之前测试我的应用程序,以确保它能够正常运行?