使用带有 RSA-SHA1 的 Twitter joauth 验证 OAuth1a 签名请求?
Posted
技术标签:
【中文标题】使用带有 RSA-SHA1 的 Twitter joauth 验证 OAuth1a 签名请求?【英文标题】:Verify OAuth1a signed request using Twitter joauth with RSA-SHA1? 【发布时间】:2016-01-08 08:55:27 【问题描述】:我有一个用例来验证 OAuth1 请求,该请求使用 RSA 私钥签名并在服务器端使用 RSA 公钥进行验证。
我从 Twitter 上找到了这个库,它可以帮助我们验证/验证 Oauth 签名的请求。 https://github.com/twitter/joauth
我想利用这个库来验证来自 Jersey 或 Spring MVC 操作方法的请求。来自客户端的请求将使用私钥进行签名。最后,我将使用客户端的公钥来验证请求。这意味着 RSA-SHA1 算法。
Twitter joauth 似乎很有用,但我缺少将 HttpServletRequest 转换为 OAuthRequest 的代码
库自述文件建议这是设施,但我找不到执行 javax.servlet.http.HttpServletRequest
的代码 --> com.twitter.joauth.OAuthRequest
转换。
请求验证发生在具有以下签名的验证方法中。
public VerifierResult verify(UnpackedRequest.OAuth1Request request, String tokenSecret, String consumerSecret);
其次,我还想知道当验证方法采用字符串参数时,哪种方法最适合使用/读取带有 twitter joauth 的 RSA 公钥?
【问题讨论】:
您使用的是哪个版本的 JOAuth? 【参考方案1】:我从未使用任何库通过 Twitter 对用户进行身份验证。但我刚刚查看了 UnpackedRequest.OAuth1Request。您可以通过填充所有参数来创建此类的实例。我已经编写了 Twitter OAuth Header 创建器,因此您可以使用它来填充这些参数或直接发送 POST 请求而无需库。 这里是您需要的所有类:签名 - 生成 OAuth 签名。
public class Signature
private static final String HMAC_SHA1_ALGORITHM = "HmacSHA1";
public static String calculateRFC2104HMAC(String data, String key)
throws java.security.SignatureException
String result;
try
SecretKeySpec signingKey = new SecretKeySpec(key.getBytes(), HMAC_SHA1_ALGORITHM);
Mac mac = Mac.getInstance(HMAC_SHA1_ALGORITHM);
mac.init(signingKey);
byte[] rawHmac = mac.doFinal(data.getBytes());
result = new String(Base64.encodeBase64(rawHmac));
catch (Exception e)
throw new SignatureException("Failed to generate HMAC : " + e.getMessage());
return result;
NvpComparator - 对标题中需要的参数进行排序。
public class NvpComparator implements Comparator<NameValuePair>
@Override
public int compare(NameValuePair arg0, NameValuePair arg1)
String name0 = arg0.getName();
String name1 = arg1.getName();
return name0.compareTo(name1);
OAuth - 用于 URL 编码。
class OAuth
...
public static String percentEncode(String s)
return URLEncoder.encode(s, "UTF-8")
.replace("+", "%20").replace("*", "%2A")
.replace("%7E", "~");
...
HeaderCreator - 创建所有需要的参数并生成 OAuth 标头参数。
public class HeaderCreator
private String authorization = "OAuth ";
private String oAuthSignature;
private String oAuthNonce;
private String oAuthTimestamp;
private String oAuthConsumerSecret;
private String oAuthTokenSecret;
public String getAuthorization()
return authorization;
public String getoAuthSignature()
return oAuthSignature;
public String getoAuthNonce()
return oAuthNonce;
public String getoAuthTimestamp()
return oAuthTimestamp;
public HeaderCreator()
public HeaderCreator(String oAuthConsumerSecret)
this.oAuthConsumerSecret = oAuthConsumerSecret;
public HeaderCreator(String oAuthConsumerSecret, String oAuthTokenSecret)
this(oAuthConsumerSecret);
this.oAuthTokenSecret = oAuthTokenSecret;
public String getTwitterServerTime() throws IOException, ParseException
HttpsURLConnection con = (HttpsURLConnection)
new URL("https://api.twitter.com/oauth/request_token").openConnection();
con.setRequestMethod("HEAD");
con.getResponseCode();
String twitterDate= con.getHeaderField("Date");
DateFormat formatter = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z", Locale.ENGLISH);
Date date = formatter.parse(twitterDate);
return String.valueOf(date.getTime() / 1000L);
public String generatedSignature(String url, String method, List<NameValuePair> allParams,
boolean withToken) throws SignatureException
oAuthNonce = String.valueOf(System.currentTimeMillis());
allParams.add(new BasicNameValuePair("oauth_nonce", oAuthNonce));
try
oAuthTimestamp = getTwitterServerTime();
allParams.add(new BasicNameValuePair("oauth_timestamp", oAuthTimestamp));
catch (Exception ex)
//TODO: Log!!
Collections.sort(allParams, new NvpComparator());
StringBuffer params = new StringBuffer();
for(int i=0;i<allParams.size();i++)
NameValuePair nvp = allParams.get(i);
if (i>0)
params.append("&");
params.append(nvp.getName() + "=" + OAuth.percentEncode(nvp.getValue()));
String signatureBaseStringTemplate = "%s&%s&%s";
String signatureBaseString = String.format(signatureBaseStringTemplate,
OAuth.percentEncode(method),
OAuth.percentEncode(url),
OAuth.percentEncode(params.toString()));
String compositeKey = OAuth.percentEncode(oAuthConsumerSecret)+"&";
if(withToken) compositeKey+=OAuth.percentEncode(oAuthTokenSecret);
oAuthSignature = Signature.calculateRFC2104HMAC(signatureBaseString, compositeKey);
return oAuthSignature;
public String generatedAuthorization(List<NameValuePair> allParams)
authorization = "OAuth ";
Collections.sort(allParams, new NvpComparator());
for(NameValuePair nvm : allParams)
authorization+=nvm.getName()+"="+OAuth.percentEncode(nvm.getValue())+", ";
authorization=authorization.substring(0,authorization.length()-2);
return authorization;
说明: 1. 获取TwitterServerTime 在 oAuthTimestamp 中,您需要的不是服务器时间,而是 Twitter 服务器的时间。如果您总是在某个 Twitter 服务器中发送请求,您可以优化它以保存此参数。 2. HeaderCreator.generatedSignature(...) url - 推特 API 的逻辑 url 方法 - GET 或 POST。您必须始终使用“POST” allParams - 您知道生成签名的参数 ("param_name", "param_value"); withToken - 如果你知道 oAuthTokenSecret 设置为真。否则为假。 3. HeaderCreator.generatedAuthorization(...) 在 generatedSignature(...) 之后使用此方法生成 OAuth 标头字符串。 allParams - 它是您在 generatedSignature(...) 中使用的参数加上:nonce、signature、timestamp。始终使用:
allParams.add(new BasicNameValuePair("oauth_nonce", headerCreator.getoAuthNonce()));
allParams.add(new BasicNameValuePair("oauth_signature", headerCreator.getoAuthSignature()));
allParams.add(new BasicNameValuePair("oauth_timestamp", headerCreator.getoAuthTimestamp()));
现在您可以使用它在您的库中填充 UnpackedRequest.OAuth1Request。这里还有一个在没有库的情况下在 SpringMVC 中对用户进行身份验证的示例:Requests - 到发送帖子请求。
public class Requests
public static String sendPost(String url, String urlParameters, Map<String, String> prop) throws Exception
URL obj = new URL(url);
HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();
con.setRequestMethod("POST");
if(prop!=null)
for (Map.Entry<String, String> entry : prop.entrySet())
con.setRequestProperty(entry.getKey(), entry.getValue());
con.setDoOutput(true);
DataOutputStream wr = new DataOutputStream(con.getOutputStream());
wr.writeBytes(urlParameters);
wr.flush();
wr.close();
int responseCode = con.getResponseCode();
BufferedReader in;
if(responseCode==200)
in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
else
in = new BufferedReader(
new InputStreamReader(con.getErrorStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null)
response.append(inputLine);
in.close();
return response.toString();
twAuth(...) - 把它放在你的控制器中。当用户想要通过 Twitter 在您的站点中进行身份验证时执行它。
@RequestMapping(value = "/twauth", method = RequestMethod.GET)
@ResponseBody
public String twAuth(HttpServletResponse response) throws Exception
try
String url = "https://api.twitter.com/oauth/request_token";
List<NameValuePair> allParams = new ArrayList<NameValuePair>();
allParams.add(new BasicNameValuePair("oauth_callback", "http://127.0.0.1:8080/twlogin"));
allParams.add(new BasicNameValuePair("oauth_consumer_key", "2YhNLyum1VY10UrWBMqBnatiT"));
allParams.add(new BasicNameValuePair("oauth_signature_method", "HMAC-SHA1"));
allParams.add(new BasicNameValuePair("oauth_version", "1.0"));
HeaderCreator headerCreator = new HeaderCreator("RUesRE56vVWzN9VFcfA0jCBz9VkvkAmidXj8d1h2tS5EZDipSL");
headerCreator.generatedSignature(url,"POST",allParams,false);
allParams.add(new BasicNameValuePair("oauth_nonce", headerCreator.getoAuthNonce()));
allParams.add(new BasicNameValuePair("oauth_signature", headerCreator.getoAuthSignature()));
allParams.add(new BasicNameValuePair("oauth_timestamp", headerCreator.getoAuthTimestamp()));
Map<String, String> props = new HashMap<String, String>();
props.put("Authorization", headerCreator.generatedAuthorization(allParams));
String twitterResponse = Requests.sendPost(url,"",props);
Integer indOAuthToken = twitterResponse.indexOf("oauth_token");
String oAuthToken = twitterResponse.substring(indOAuthToken, twitterResponse.indexOf("&",indOAuthToken));
response.sendRedirect("https://api.twitter.com/oauth/authenticate?" + oAuthToken);
catch (Exception ex)
//TODO: Log
throw new Exception();
return "main";
twLogin(...) - 把它放在你的控制器中。这是来自 Twitter 的回调。
@RequestMapping(value = "/twlogin", method = RequestMethod.GET)
public String twLogin(@RequestParam("oauth_token") String oauthToken,
@RequestParam("oauth_verifier") String oauthVerifier,
Model model, HttpServletRequest request)
try
if(oauthToken==null || oauthToken.equals("") ||
oauthVerifier==null || oauthVerifier.equals(""))
return "main";
String url = "https://api.twitter.com/oauth/access_token";
List<NameValuePair> allParams = new ArrayList<NameValuePair>();
allParams.add(new BasicNameValuePair("oauth_consumer_key", "2YhNLyum1VY10UrWBMqBnatiT"));
allParams.add(new BasicNameValuePair("oauth_signature_method", "HMAC-SHA1"));
allParams.add(new BasicNameValuePair("oauth_token", oauthToken));
allParams.add(new BasicNameValuePair("oauth_version", "1.0"));
NameValuePair oAuthVerifier = new BasicNameValuePair("oauth_verifier", oauthVerifier);
allParams.add(oAuthVerifier);
HeaderCreator headerCreator = new HeaderCreator("RUesRE56vVWzN9VFcfA0jCBz9VkvkAmidXj8d1h2tS5EZDipSL");
headerCreator.generatedSignature(url,"POST",allParams,false);
allParams.add(new BasicNameValuePair("oauth_nonce", headerCreator.getoAuthNonce()));
allParams.add(new BasicNameValuePair("oauth_signature", headerCreator.getoAuthSignature()));
allParams.add(new BasicNameValuePair("oauth_timestamp", headerCreator.getoAuthTimestamp()));
allParams.remove(oAuthVerifier);
Map<String, String> props = new HashMap<String, String>();
props.put("Authorization", headerCreator.generatedAuthorization(allParams));
String twitterResponse = Requests.sendPost(url,"oauth_verifier="+oauthVerifier,props);
//Get user id
Integer startIndexTmp = twitterResponse.indexOf("user_id")+8;
Integer endIndexTmp = twitterResponse.indexOf("&",startIndexTmp);
if(endIndexTmp<=0) endIndexTmp = twitterResponse.length()-1;
Long userId = Long.parseLong(twitterResponse.substring(startIndexTmp, endIndexTmp));
//Do what do you want...
catch (Exception ex)
//TODO: Log
throw new Exception();
【讨论】:
感谢分享如此详尽的答案。以上是关于使用带有 RSA-SHA1 的 Twitter joauth 验证 OAuth1a 签名请求?的主要内容,如果未能解决你的问题,请参考以下文章
为啥我使用 OpenSSL 和 Java 生成的 RSA-SHA256 签名不同?