本文整理匯總了Java中com.google.api.client.auth.oauth2.Credential.setRefreshToken方法的典型用法代碼示例。如果您正苦於以下問題:Java Credential.setRefreshToken方法的具體用法?Java Credential.setRefreshToken怎麽用?Java Credential.setRefreshToken使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.api.client.auth.oauth2.Credential
的用法示例。
在下文中一共展示了Credential.setRefreshToken方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: makeClient
import com.google.api.client.auth.oauth2.Credential; //導入方法依賴的package包/類
@Override
public Calendar makeClient(String clientId, String clientSecret,
Collection<String> scopes, String applicationName, String refreshToken,
String accessToken, String emailAddress, String p12FileName, String user) {
Credential credential;
try {
// if emailAddress and p12FileName values are present, assume Google Service Account
if (null != emailAddress && !"".equals(emailAddress) && null != p12FileName && !"".equals(p12FileName)) {
credential = authorizeServiceAccount(emailAddress, p12FileName, scopes, user);
} else {
credential = authorize(clientId, clientSecret, scopes);
if (refreshToken != null && !"".equals(refreshToken)) {
credential.setRefreshToken(refreshToken);
}
if (accessToken != null && !"".equals(accessToken)) {
credential.setAccessToken(accessToken);
}
}
return new Calendar.Builder(transport, jsonFactory, credential).setApplicationName(applicationName).build();
} catch (Exception e) {
LOG.error("Could not create Google Drive client.", e);
}
return null;
}
示例2: makeClient
import com.google.api.client.auth.oauth2.Credential; //導入方法依賴的package包/類
@Override
public Drive makeClient(String clientId, String clientSecret, Collection<String> scopes, String applicationName, String refreshToken, String accessToken) {
Credential credential;
try {
credential = authorize(clientId, clientSecret, scopes);
if (refreshToken != null && !"".equals(refreshToken)) {
credential.setRefreshToken(refreshToken);
}
if (accessToken != null && !"".equals(accessToken)) {
credential.setAccessToken(accessToken);
}
return new Drive.Builder(transport, jsonFactory, credential).setApplicationName(applicationName).build();
} catch (Exception e) {
LOG.error("Could not create Google Drive client.", e);
}
return null;
}
示例3: makeClient
import com.google.api.client.auth.oauth2.Credential; //導入方法依賴的package包/類
@Override
public Gmail makeClient(String clientId, String clientSecret, Collection<String> scopes, String applicationName, String refreshToken, String accessToken) {
Credential credential;
try {
credential = authorize(clientId, clientSecret, scopes);
if (refreshToken != null && !"".equals(refreshToken)) {
credential.setRefreshToken(refreshToken);
}
if (accessToken != null && !"".equals(accessToken)) {
credential.setAccessToken(accessToken);
}
return new Gmail.Builder(transport, jsonFactory, credential).setApplicationName(applicationName).build();
} catch (Exception e) {
LOG.error("Could not create Google Drive client.", e);
}
return null;
}
示例4: load
import com.google.api.client.auth.oauth2.Credential; //導入方法依賴的package包/類
@Override
public boolean load(String userId, Credential credential) throws IOException {
Log.i(BnConstants.TAG, "Loading credential for userId ".concat(userId));
Log.i(BnConstants.TAG, "Loaded access token = ".concat(prefs.getString(userId + ACCESS_TOKEN, "")));
credential.setAccessToken(prefs.getString(userId + ACCESS_TOKEN, null));
if (prefs.contains(userId + EXPIRES_IN)) {
credential.setExpirationTimeMilliseconds(prefs.getLong(userId + EXPIRES_IN,0));
}
credential.setRefreshToken(prefs.getString(userId + REFRESH_TOKEN, null));
return true;
}