public String getOAuthConsumerKey() throws OAuthRequestException {
CheckOAuthSignatureRequest request = new CheckOAuthSignatureRequest();
byte[] responseBytes = makeSyncCall(CHECK_SIGNATURE_METHOD, request);
CheckOAuthSignatureResponse response = new CheckOAuthSignatureResponse();
response.mergeFrom(responseBytes);
return response.getOauthConsumerKey();
}
private GetOAuthUserResponse getGetOAuthUserResponse(String scope)
throws OAuthRequestException {