net.oauth.OAuth.newMap()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(112)

本文整理了Java中net.oauth.OAuth.newMap()方法的一些代码示例,展示了OAuth.newMap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。OAuth.newMap()方法的具体详情如下:
包路径:net.oauth.OAuth
类名称:OAuth
方法名:newMap

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) {

相关文章