Google通讯录API OAuth2.0无法正常使用

时间:2015-02-05 14:15:50

标签: oauth-2.0 google-api google-api-java-client google-contacts

这是我从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.这是应该在这里使用的用户名和密码?

0 个答案:

没有答案