/**
* Makes an arbitrary HTTP request using the provided account.
*
* If the request doesn't execute successfully on the first try, the tokens will be refreshed
* and the request will be retried. If the second try fails, an exception will be raised.
*/
public static String makeRequest(OIDCAccountManager accountManager, String method, String url, Account account,
AccountManagerCallback<Bundle> callback)
throws IOException, UserNotAuthenticatedWrapperException, AuthenticatorException, OperationCanceledException {
return makeRequest(accountManager, method, url, "", account, true, callback);
}
APIUtility.java 文件源码
java
阅读 18
收藏 0
点赞 0
评论 0
项目:defect-party
作者:
评论列表
文章目录