这是我从gdata示例代码中找到的代码段。我试着加入这个,但没有效果。
public ContactsExample(ContactsExampleParameters parameters)
throws MalformedURLException, AuthenticationException {
projection = parameters.getProjection();
String url = parameters.getBaseUrl() + (parameters.isGroupFeed() ? "groups/" : "contacts/") + parameters.getUserName() + "/" + projection;
feedUrl = new URL(url);
service = new ContactsService("MYAPP");
String userName = parameters.getUserName();
String password = parameters.getPassword();
if (userName == null || password == null) {
return;
}
service.setUserCredentials(userName, password);
}
我有这些疑惑: 1.名称是指定为“MYAPP”的任何随机名称,还是有任何意义? 2.这是应该在这里使用的用户名和密码?