简体   繁体   English

通过播放框架将yahoo联系人导入到我的页面所需的帮助

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

I am working in Play framework and I am trying to import yahoo contacts. 我正在Play框架中工作,并且尝试导入yahoo联系人。

I have cleared the yahoo authentication api's to get the access_token and guid. 我已清除yahoo身份验证api以获得access_token和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. 这样,当我尝试使用带有auth参数的http://social.yahooapis.com/v1/user/ {guid} / contacts导入联系人时,我的页面和日志中出现了连接超时异常。

When I paste the same contact url being generated through the code in the browser, I am getting as signature_invalid 当我在浏览器中粘贴通过代码生成的相同的联系人URL时,我得到的是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. 我希望我已经按照yahoo api开发说明中提到的所有内容创建了oauth_signature,但是仍然无法理解。

Can anyone help me on this please? 有人可以帮我吗?

Controller code for generating signature - 用于生成签名的控制器代码-

public class Yahoo { 公开课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.accessToken = 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. 在复制和粘贴到浏览器上时,您将获得无效签名,因为您没有传递oauth头。

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 我强烈建议您使用一个lib来做到这一点,我已经用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 http://geeks.aretotally.in http://playframework.info http://mashup.fm

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM