欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實(shí)現(xiàn)授權(quán)訪問(wèn)網(wǎng)頁(yè)的方法

 更新時(shí)間:2014年07月24日 15:11:09   投稿:shichen2014  
這篇文章主要介紹了Android實(shí)現(xiàn)授權(quán)訪問(wèn)網(wǎng)頁(yè)的方法,需要的朋友可以參考下

本文實(shí)例講述了Android授權(quán)訪問(wèn)網(wǎng)頁(yè)的實(shí)現(xiàn)方法,即使用Webview顯示OAuth Version 2.a ImplicitGrant方式授權(quán)的頁(yè),但是對(duì)于移動(dòng)終端不建議使用Authorize code grant方式授權(quán)。

具體功能代碼如下所示:

import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.net.http.SslError;
import android.os.Bundle;
import android.util.Log;
import android.webkit.SslErrorHandler;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import com.tencent.weibo.oauthv2.OAuthV2;
import com.tencent.weibo.oauthv2.OAuthV2Client;
/**
 * 使用Webview顯示OAuth Version 2.a ImplicitGrant方式授權(quán)的頁(yè)
 * (移動(dòng)終端不建議使用Authorize code grant方式授權(quán)
 * 本類使用方法
 * 調(diào)用本類的地方請(qǐng)?zhí)砑尤缦麓a
 * //請(qǐng)將OAuthV2Activity改為類的類名
 * Intent intent = new Intent(OAuthV2Activity.this, OAuthV2AuthorizeWebView.class);
 * intent.putExtra("oauth", oAuth); //oAuth為OAuthV2類的實(shí)例,存放授權(quán)相關(guān)信??
 * startActivityForResult(intent, myRrequestCode); //請(qǐng)?jiān)O(shè)置合適的requsetCode
 * 重寫(xiě)接收回調(diào)信息的方
 * if (requestCode==myRrequestCode) { //對(duì)應(yīng)之前設(shè)置的的myRequsetCode
 *   if (resultCode==OAuthV2AuthorizeWebView.RESULT_CODE) {
 *     //取得返回的OAuthV2類實(shí)例oAuth
 *     oAuth=(OAuthV2) data.getExtras().getSerializable("oauth");
 *   }
 * }
 * @see android.app.Activity#onActivityResult(int requestCode, int resultCode, Intent data)
 */
public class MyWebView extends Activity {
  public final static int RESULT_CODE = 2;
  private OAuthV2 oAuth;
  private final String TAG = "MyWebView";
 private WebView mWebView;
  @SuppressLint("NewApi")
 @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.webview_qq);
    mWebView = (WebView) findViewById(R.id.qq_mywebview);;
    mWebView.setVerticalScrollBarEnabled(false);
 mWebView.setHorizontalScrollBarEnabled(false);
 Intent intent = this.getIntent();
    oAuth = (OAuthV2) intent.getExtras().getSerializable("oauth");
    String urlStr = OAuthV2Client.generateImplicitGrantUrl(oAuth);
    WebSettings webSettings = mWebView.getSettings();
    webSettings.setJavaScriptEnabled(true);
    webSettings.setSupportZoom(true);
    mWebView.requestFocus();
    mWebView.loadUrl(urlStr);
    System.out.println(urlStr.toString());
    Log.i(TAG, "WebView Starting....");
    WebViewClient client = new WebViewClient() {
    /* 回調(diào)方法,當(dāng)頁(yè)面加載時(shí)執(zhí)行*/
      @Override
      public void onPageStarted(WebView view, String url, Bitmap favicon) {
        Log.i(TAG, "WebView onPageStarted...");
        Log.i(TAG, "URL = " + url);
        if (url.indexOf("access_token=") != -1) {
          int start=url.indexOf("access_token=");
          String responseData=url.substring(start);
          OAuthV2Client.parseAccessTokenAndOpenId(responseData, oAuth);
          Intent intent = new Intent();
          intent.putExtra("oauth", oAuth);
          setResult(RESULT_CODE, intent);
          finish();
        }
        super.onPageStarted(view, url, favicon);
        Log.i(TAG, "999999999");
      }
      /* TODO Android2.2及以上版本才能使用該方法,目前https://open.t.qq.com中存在http資源會(huì)引起sslerror,待網(wǎng)站修正后可去掉該方*/
 public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
        if ((null != view.getUrl()) && (view.getUrl().startsWith("https://open.t.qq.com"))) {
          handler.proceed();// 接受證書(shū)
        } else {
          handler.cancel(); // 默認(rèn)的處理方式,WebView變成空白
        }
        // handleMessage(Message msg); 其他處理
      }
    };
    mWebView.setWebViewClient(client);
  }
}

相關(guān)文章

最新評(píng)論