AuthFailure尝试使用凌空将android设备连接到wampserver(localhost)

时间:2016-05-13 14:16:49

标签: android android-volley

我正在尝试将我的Android设备连接到localhost即wampserver 使用android volley

这是我的代码:

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

      String url = "http://192.16x.x.xxx/folderName/ClutchTester.php";


      JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() {
        @Override
        public void onResponse(JSONObject response) {

            Toast.makeText(getApplicationContext(),response.toString(),Toast.LENGTH_LONG).show();
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            Toast.makeText(getApplicationContext(),error.toString(),Toast.LENGTH_LONG).show();
        }
    });
    Volley.newRequestQueue(getApplicationContext()).add(request);
    }
}

Toast说 AuthFailureError 。我在这里使用的IP地址是IPv4地址。有谁知道我为什么会收到这个错误以及如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

  

尝试将固定IP分配给您的电脑,而不是自动获取

完成后

  • 现在你的路由器知道在哪里发送这些数据包如果得到并且在你的电脑上你的wampserver将处理休息。

原因:您的路由器可能找不到您使用的IP,因为IP是自动分配的。

别忘了

  • 使用代码中为您的电脑修复的IP更改您的网址。