使用.htaccess和Android应用程序连接到php页面 [英] Connect to php page using .htaccess with android application

查看:67
本文介绍了使用.htaccess和Android应用程序连接到php页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的.htaccess文件已锁定php页面(用户名和密码),我该如何使用我的android应用程序连接到该php?我要连接的函数是:

i've a locked php page (username and password) by .htaccess file, how can i do to connect to this php with my android application? My function to connect is :

String conn(JSONObject json,String page){
        String result = "";
         String stringaFinale = "";
         InputStream is = null;

         final int TIMEOUT_MILLISEC = 5000;  // = 10 seconds    
        HttpParams httpParams = new BasicHttpParams();
        HttpConnectionParams.setConnectionTimeout(httpParams, TIMEOUT_MILLISEC);
        HttpConnectionParams.setSoTimeout(httpParams, TIMEOUT_MILLISEC);
        HttpClient client = new DefaultHttpClient(httpParams);

        HttpPost request = new HttpPost("http://olbolb.org/Hihi/"+page);

        //request result type
        request.setHeader("Accept", "application/json; charset=utf-8");

      try{  StringEntity se = new StringEntity(json.toString());
           se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,"application/json"));
           request.setEntity(se);      

           HttpResponse response = client.execute(request); 

            temp= EntityUtils.toString(response.getEntity());
            return temp;

      }
      catch(Exception e){ 
          return null; 

      }
    }


推荐答案

您可以在 HttpPost 对象中添加用于BASIC身份验证的代码:

You can add this code for BASIC authentication in HttpPost object:

HttpPost request = new HttpPost("http://olbolb.org/Hihi/"+page);
request.setHeader("Authorization", "Basic " + 
   new Base64().encodeToString("username:password".getBytes("UTF-8"), Base64.DEFAULT) );

这篇关于使用.htaccess和Android应用程序连接到php页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆