检测并处理需要登录的wifi

时间:2012-03-22 22:07:05

标签: android httpclient wifi

我正在Android应用中使用HttpClient 4.1并试图让我的应用程序的API请求被其中一个“你需要登录或支付wifi”屏幕拦截。

我想弹出一个允许用户登录的webview。

我一直试图拦截httpClient中的重定向,但我没有成功。

这就是我目前正在尝试的事情:

this.client = new DefaultHttpClient(connectionManager, params);

((DefaultHttpClient) this.client).setRedirectStrategy(new DefaultRedirectStrategy() {
    public boolean isRedirected(HttpRequest request, HttpResponse response, HttpContext context)  {
        boolean isRedirect = Boolean.FALSE;
        try {
            isRedirect = super.isRedirected(request, response, context);
        } catch (ProtocolException e) {
            Log.e(TAG, "Failed to run isRedirected", e);
        }
        if (!isRedirect) {
            int responseCode = response.getStatusLine().getStatusCode();
            if (responseCode == 301 || responseCode == 302) {
                throw new WifiLoginNeeded();
                // The "real implementation" should return true here..
            }
        } else {
            throw new WifiLoginNeeded();
        }

        return isRedirect;
    }
});

然后在我的活动中:

try {
    response = httpClient.get(url);
} catch (WifiLoginNeeded e){
    showWifiLoginScreen();
}

show wifi屏幕执行此操作:

Uri uri = Uri.parse("http://our-site.com/wifi-login");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

思考是这样的:

  • 我的API永远不会合法重定向
  • 所以我配置HttpClient在重定向时抛出我特殊的RuntimeException
  • 在活动代码中捕获该异常并弹出Web视图以将其定向到登录屏幕
  • 一旦他们登录,wifi-login祝贺他们做得好,并提示他们回到应用程序

问题是,我从未得到过WifiLoginNeeded异常。使用Android实现此目的的首选方法是什么?

3 个答案:

答案 0 :(得分:2)

更常见的情况是:您可以在公共API中包含一些内容,例如“Hello World”或“Ping”消息。

    GET http://api.example.com/1.0/ping HTTP/1.1
    Accepts: text/json

    Content-Type: text/json
    { ping: "ok", currentAPIVersion: 1.1, minAPIVersion: 1.0 }

尝试连接并“ping”您的服务器。如果没有以您期望的格式返回响应,则将相同的URL折腾为Intent,以便用户使用他们选择的Web浏览器处理结果。

这也可以处理:公司代理(“公司XYZ禁止你!”),以及将来你自己的API中的不兼容更改(“抱歉,我们不再支持这个已有12年历史的API。请下载那里的更新。“)

答案 1 :(得分:-1)

试试这个小解决方案,它会有所帮助

   public boolean haveNetworkConnection() {
    cm = (ConnectivityManager) mContext.getSystemService(Context.CONNECTIVITY_SERVICE);
            Boolean haveConnectedWifi = false;
            Boolean haveConnectedMobile = false;

            NetworkInfo[] netInfo = cm.getAllNetworkInfo();
            for (NetworkInfo ni : netInfo) {
                if (ni.getTypeName().equalsIgnoreCase("WIFI"))
                    if (ni.isConnected())
                        haveConnectedWifi = true;
                if (ni.getTypeName().equalsIgnoreCase("MOBILE"))
                    if (ni.isConnected())
                        haveConnectedMobile = true;
            }
            return haveConnectedWifi || haveConnectedMobile;
        }

答案 2 :(得分:-2)

请检查以下代码。您可以查看正在使用的连接类型。

WifiManager lWifiManager = (WifiManager) OpenYouTubePlayerActivity.this.getSystemService(Context.WIFI_SERVICE);
TelephonyManager lTelephonyManager = (TelephonyManager) OpenYouTubePlayerActivity.this.getSystemService(Context.TELEPHONY_SERVICE);

////////////////////////////
// if we have a fast connection (wifi or 3g)
if( (lWifiManager.isWifiEnabled() && lWifiManager.getConnectionInfo() != null && lWifiManager.getConnectionInfo().getIpAddress() != 0) ||
    ( (lTelephonyManager.getNetworkType() == TelephonyManager.NETWORK_TYPE_UMTS ||

    /* icky... using literals to make backwards compatible with 1.5 and 1.6 */      
    lTelephonyManager.getNetworkType() == 9 /*HSUPA*/  ||
    lTelephonyManager.getNetworkType() == 10 /*HSPA*/  ||
    lTelephonyManager.getNetworkType() == 8 /*HSDPA*/  ||
    lTelephonyManager.getNetworkType() == 5 /*EVDO_0*/  ||
    lTelephonyManager.getNetworkType() == 6 /*EVDO A*/) 

    && lTelephonyManager.getDataState() == TelephonyManager.DATA_CONNECTED) 
    ){
        //Do some thing here
}