本文整理了Java中net.oauth.OAuth.newMap()
方法的一些代码示例,展示了OAuth.newMap()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。OAuth.newMap()
方法的具体详情如下:
包路径:net.oauth.OAuth
类名称:OAuth
方法名:newMap
[英]Construct a Map containing a copy of the given parameters. If several parameters have the same name, the Map will contain the first value, only.
[中]构造一个包含给定参数副本的映射。如果多个参数具有相同的名称,则映射将仅包含第一个值。
代码示例来源:origin: sakaiproject/sakai
protected Map<String, String> getParameterMap() throws IOException {
beforeGetParameter();
if (parameterMap == null) {
parameterMap = OAuth.newMap(parameters);
}
return parameterMap;
}
代码示例来源:origin: net.oauth.core/oauth
protected Map<String, String> getParameterMap() throws IOException {
beforeGetParameter();
if (parameterMap == null) {
parameterMap = OAuth.newMap(parameters);
}
return parameterMap;
}
代码示例来源:origin: sakaiproject/sakai
final Map<String, String> pMap = OAuth.newMap(parameters);
if (pMap.get(OAuth.OAUTH_TOKEN) == null && accessor.accessToken != null) {
addParameter(OAuth.OAUTH_TOKEN, accessor.accessToken);
代码示例来源:origin: net.oauth.core/oauth
final Map<String, String> pMap = OAuth.newMap(parameters);
if (pMap.get(OAuth.OAUTH_TOKEN) == null && accessor.accessToken != null) {
addParameter(OAuth.OAUTH_TOKEN, accessor.accessToken);
代码示例来源:origin: sakaiproject/sakai
if (parameters == null) {
parameters = OAuth.newList(OAuth.OAUTH_TOKEN, accessor.requestToken);
} else if (!OAuth.newMap(parameters).containsKey(OAuth.OAUTH_TOKEN)) {
List<Map.Entry> p = new ArrayList<Map.Entry>(parameters);
p.add(new OAuth.Parameter(OAuth.OAUTH_TOKEN, accessor.requestToken));
代码示例来源:origin: com.atlassian.applinks/applinks-oauth-plugin
try {
List<OAuth.Parameter> parameters = OAuth.decodeForm(response.getResponseBodyAsString());
Map<String, String> map = OAuth.newMap(parameters);
oauthParametersHolder.set(map);
} catch (Exception e) {
内容来源于网络,如有侵权,请联系作者删除!