facebook第三方登录开发

    之前开发过facebook的第三方登录,网络上的资料很少,自己看官方的文档和查找一些资料开发了下,感觉过程有好多可避免的情况,在这里和大家分享一下。
    facebook目前只支持oauth2技术,个人理解其工作流程是当用户想访问当前网站,却不想注册账号,此时当前网站有其它主流网站的第三方登录支持功能,即使用当前站的合作网站的账号密码去第三方合作网站验证用户的合法性,验证成功则允许登录当前站点,无需知道第三方的账号密码。
    开发前需要先注册一个facebook的应用,这样可以得到类似密钥的两个值,client_id和client_secret,这两个值是访问facebook url的必要参数;
    还要对应用进行一些必要的设置,首先要设置访问facebook和facebook回调的域名,并且配置下白名单,里面为ip值,多个逗号分隔,facebook会校验当前访问的域名解析后对应的ip是否在白名单里面;
    接下来注意沙箱选项一定不要启用,否则会获取不到用户的信息,这样facebook应用基本设置完毕,该开始编写请求代码了。
    上面了解了oauth2的工作流程,接下来一起看看其步骤和原理。
    当用户点击第三方登录按钮时,会跳转出第三方网站(以下统称为服务端)的登录页面,输入用户名密码后客户端会向服务端申请一个临时令牌(即code值),申请成功后客户端还要申请授权(即token值),如果是第一次访问则会跳出授权页面,用户是否允许访问其一些基本信息,如name、email、用户的Id、图片等基本信息,如果验证及授权通过,则登录当前站点,并且下次会默认之前选择的授权不会弹出提示,除非清除本地cookie。
    现在我们来编写代码,首先看下facebook oauth2的几个基本参数和访问url。
    基本参数:
    1、CLIENT_ID = 107717112397602      //为注册应用得到的值
    2、redirectUrl = http://taiwan.tuangou.com/visitUrl/visitUrl    //为facebook回调当前站点的url
    3、SCOPE = "&scope=user_about_me,email,read_stream";       //表示取得的用户信息的权限范围

    访问url:
    1、REQUEST_CODE_URL       //發送請求,得到Authorization Code
      https://www.facebook.com/dialog/oauth?" + "client_id="+CLIENT_ID+"&redirect_uri="+redirectUrl+"&response_type=code"+SCOPE;
    2、REQUEST_TOKEN_URL     //請求token url
       https://graph.facebook.com/oauth/access_token
    3、REQUEST_USER_URL      //使用得到的token獲取用戶信息
        https://graph.facebook.com/me

    在这并没有使用facebook的官方封装好的工具类,因为有了访问的url(由官方API提供),其实就是发送http请求和接受响应的过程,所以接下来只是编写http的过程。
    
     代码1-controller中:
     public void visitUrl(String code, @Param("origURL") String origURL){
try {
if (origURL != null && !"".equals(origURL)) {
this.origUrl = origURL;
}
//获得响应对象,可按照自己的方式获取
HttpServletResponse response = inv.getResponse();
if (code != null && !"".equals(code)) {

String token = NuomiOauthApi.getFacebookAccessToken(code);
if(token == null || "".equals(token)) {
response.getWriter().write("get code error...");
}else {
String[] tokens = token.split("&");
for (String t : tokens) {
if (t.indexOf("access_token") != -1) {
//此处有可能返回的值有多余的数据,可按照开发实际情况来决定是否处理 token = t.split("=")[1].trim();
}
}
//此处调用验证通过用户的基本信息 Map<String, String> map = getLoginUser(token);
if (map != null) {
//此处是判断是否本地已经有此用户,是否需要本地注册,可得到用户信息后自行开发 this.isLoginUserOldOrNew(inv, map, origUrl);
}else {
response.sendRedirect(INiuxConstants.DOMAIN_TW+origUrl);
}
}
}else {
////此处是第一次申请code值时
response.sendRedirect(requestCodeUrl);
}

} catch (Exception e) {
e.printStackTrace();
}
}



代码2-:
/**
* 使用Authentication Code方式獲取AcessToken
* @param authCode
* @return
*  如果出錯,返回null
*/
public static String getFacebookAccessToken(String authCode) {
try {
StringBuffer urlStr = new StringBuffer(REQUEST_TOKEN_URL);
urlStr.append('?');
StringBuffer temp = new StringBuffer();
temp.append("client_id=").append(CLIENT_ID).append('&')
.append("redirect_uri=").append(redirectUrl).append('&')
.append("client_secret=").append(CLIENT_SECRET).append('&')
.append("grant_type=authorization_code").append('&')
.append("code=" + authCode);
urlStr.append(temp.toString());
log.info("urlStr: "+urlStr);
String token = getFacebookTokenFromUrl(urlStr.toString(), null);
log.info("get token by authCode: "+token);
return token;
} catch (Exception ex) {
log.error("get AccessToken error:" + ex.getMessage(), ex);
return null;
}

}
代码3:
/**
* 通過api和token獲取當前登錄的用戶信息
* @param token
* @return
* map of id/name;如果出錯,返回null
*/
public static Map<String, String> getLoginUser(String token) {
try {
StringBuffer urlStr = new StringBuffer(REQUEST_USER_URL);
urlStr.append("?").append("access_token="+encodeUrl(token));
log.info("getLoginUser urlStr:"+urlStr.toString());
JSONObject json = getFacebookJsonFromUrl(urlStr.toString(), null);
log.info("getLoginUser json:"+json);

if (!json.containsKey("id")) {
if (json.containsKey("error_reason")) {
String errorReason = json.getString("error_reason");
String errorDescription = json.getString("error_description");
log.warn("save to facebook failed. errorReason:" + errorReason + ", errorDescription:"+ errorDescription);
}
} else {
Map<String, String> userInfo = new HashMap<String, String>();
userInfo.put("id", json.getString("id"));
userInfo.put("name", json.getString("name"));
userInfo.put("email", json.getString("email"));
userInfo.put("gender", json.getString("gender"));
return userInfo;
}
} catch (Exception e) {
// log it
log.error("get user info failed......", e);
e.printStackTrace();
}
return null;// error
}
代码4:
/**
* 從特定的url中獲取json
* @param urlStr
* @param params
* @return
* json object ,or null if failed
*/
private static JSONObject getFacebookJsonFromUrl(String urlStr, Map<String, String> params) {
HttpClient httpClient = new DefaultHttpClient();
//http請求好多都不支持post方式,但支持get
HttpGet httpGet = new HttpGet(urlStr);

JSONObject json = null;
try {
HttpResponse response = httpClient.execute(httpGet);
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
String aStr = IOUtils.toString(is);
json = JSONObject.fromObject(aStr);
} catch (Exception e) {
log.error("http client execute error:" + e.getMessage(), e);
}

return json;
}


    以上就是整个开发的流程,还有几点需要注意:
        1、发送请求的url中有个参数为回调url(即代码中的redirectUrl),此参数在请求code和token的时候值必须一致,否则无法得到授权
        2、发送的url字符串应该encode一下,浏览器会自动解析
        3、发送用户信息请求的时候,一定要用Get方式发送http请求

    自己开发的总结,希望有所用处,谢谢!

猜你喜欢

转载自long5493.iteye.com/blog/1699665