开发者

help needed in importing yahoo contacts to my page through play framework

开发者 https://www.devze.com 2023-03-05 18:11 出处:网络
I am working in Play framework and I am trying to import yahoo contacts. I have cleared the yahoo authentication api\'s to get the access_token and guid.

I am working in Play framework and I am trying to import yahoo contacts.

I have cleared the yahoo authentication api's to get the access_token and guid.

With that, when I try to import the contacts using http://social.yahooapis.com/v1/user/{guid}/contacts with the auth parameters, I am getting the connection timeout exception in my page and log.

When I paste the same contact url being generated through the code in the browser, I am getting as signature_invalid

I hope I have followed all the stuffs mentioned in the yahoo api dev notes to create the oauth_signature, but still I am not getting it.

Can anyone help me on this please?

Controller code for generating signature -

public class Yahoo {

 private static String token = "";
 private static String currentUrl = "";
 private static String verifier = "";
 private static String tokenSecret = "";
 private static String accessToken = "";
 private static String yahooGuid = "";


public Yahoo(){
}

/**
 * Requests access to the Yahoo API for request token.
 * @return True if the request is successful, false if not.
 */

public static Yahoo authorize() {
    Session session = Session.current();
    if(session.contains("authorized") && session.get("authorized").equals("0")){
        session.put("authorized", "1");
        String url = getRequestTokenUrl();

        WS.WSRequest request = WS.url(url);
        Logger.info("Yahoo: Create request to get request token'%s'", request.url);

        WS.HttpResponse response = request.get();
        Logger.info("Yahoo: Token response status is %d", response.getStatus());

        if (response.getStatus() == 200){
            String[] pairs = response.getString().split("&");
            String[] tokenSecret = pairs[1].split("=");

            Yahoo.tokenSecret = tokenSecret[1];

            for (String pair : pairs) {
                String[] kv = pair.split("=");
                if (kv.length != 2) {
                    break;
                } else {
                    if (kv[0].equals("oauth_token")) {
                        Yahoo.token = kv[1];
                    }
                }
            }
            Logger.info("level 1 - yahoo token = %s, secret = %s",Yahoo.token, Yahoo.tokenSecret);
        }
    }
    return null;
}


/**
 * Requests access to the Yahoo API for access token.
 * @return True if the request is successful, false if not.
 */

public static Yahoo getAccessToken(){
    String url = getAccessTokenUrl();
    WS.WSRequest request = WS.url(url);
    Logger.info("Yahoo: Create request to get Access token'%s'", request.url);

    WS.HttpResponse response = request.get();
    Logger.info("Yahoo: Token response status is %d", response.getStatus());

    if (response.getStatus() == 200){
        String[] pairs = response.getString().split("&");
        String[] guidPair = pairs[5].split("=");
        String[] tokenSecret = pairs[1].split("=");
        Yahoo.tokenSecret = tokenSecret[1];
        yahooGuid = guidPair[1];
        for (String pair : pairs) {
            String[] kv = pair.split("=");
            if (kv.length != 2) {
                break;
            } else {
                if (kv[0].equals("oauth_token")) {
                    Yahoo.accessT开发者_Go百科oken = kv[1];
                }
            }
        }
        Logger.info("level 3 - yahoo token = %s, secret = %s, guid = %s",Yahoo.accessToken, Yahoo.tokenSecret, Yahoo.yahooGuid);
    }
    return null;
}

/**
 * Requests Signature 
 * @return String 
 */

public static String getBaseSignature(){

    String signature = "";
    String data = generateBaseString();
    String key = keyString();
    Logger.info("key : %s",key);
    try {
        SecretKeySpec signingKey = new SecretKeySpec(key.getBytes(), "HmacSHA1");
        Mac mac = Mac.getInstance("HmacSHA1");
        mac.init(signingKey);
        byte[] rawHmac = mac.doFinal(data.getBytes());
        signature = new String(Base64.encode(rawHmac));
        signature = java.net.URLEncoder.encode(signature, "ISO-8859-1");
        Logger.info("Signature=%s", signature);
    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return signature;
}

/**
 * Requests access to the Yahoo API for getting contacts.
 * 
 */

public static void getContacts(){   
    String url = getContactUrl();
    WS.WSRequest request = WS.url(url);
    Logger.info("Yahoo: Create request to get Contacts '%s'", request.url);

    WS.HttpResponse response = request.get();
    Logger.info("Yahoo: Token response status is %d", response.getStatus());
    if (response.getStatus() == 200){
        String[] pairs = response.getString().split("&");
        for(int i=0;i<pairs.length;i++){
            Logger.info("%s", pairs[i]);
        }
    }else {

        //errors contains a JSON response
        JsonParser parser = new JsonParser();
        JsonObject message = parser.parse(response.getString()).getAsJsonObject();
        Logger.error("Yahoo: Could not get token (status %d): %s", response.getStatus(), message.get("message").getAsString());
    }    
}

public static String generateBaseString(){
    String baseString = getBaseUrl();
    Logger.info("token secret : %s",tokenSecret);
    Logger.info("base url : %s",baseString);
    Logger.info("callback url : %s",getCallBackUrl().toString().split("oauth_token")[0].replace('?', '\0'));
    String returnString = "";
    try {
        returnString = java.net.URLEncoder.encode("GET", "ISO-8859-1") + "&" + java.net.URLEncoder.encode("http://social.yahooapis.com/v1/user/"+yahooGuid+"/contacts", "ISO-8859-1") + "&" + java.net.URLEncoder.encode(baseString, "ISO-8859-1");
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    Logger.info("Yahoo: Base string: %s",returnString);
    return returnString;
}

public static String keyString(){
    String consumerSecret = encodeString(getConsumerSecret());
    String tokenSec = encodeString(tokenSecret);
    String keyString = consumerSecret + encodeString("&") + tokenSec;
    return keyString;
}

public static String encodeString(String msgString){
    String msg = "";
    try {
        msg = java.net.URLEncoder.encode(msgString.toString(), "ISO-8859-1");
        Logger.info("encode=%s", msg);
    } catch (UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return msg;
}


You are getting invalid signature when you copy and paste on the browser because you are not passing the oauth headers.

I strongly suggest you using a lib to do that, I have done the exact same thing with linkedin: http://geeks.aretotally.in/projects/play-framework-linkedin-module

You will find explanation and link to the source code.

Hope it helps.

Thank you, Felipe

http://geeks.aretotally.in http://playframework.info http://mashup.fm

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号