在Android应用中使用大括号解析网址

时间:2018-04-07 13:16:27

标签: android json android-volley

我如何用大括号解析url

中的http://example.com/api/login/ {username} / {password}。

正常的齐射后请求返回html。但我需要JSON。

在Android应用程序中集成Login API

1 个答案:

答案 0 :(得分:0)

如果我说得对,你想要做的就是发送GET登录请求。

以下代码可以为您提供帮助(建议不要使用GET进行登录,而是使用POST。我提供GET ex,因为这是您要求的):< / p>

final TextView mTextView = (TextView) findViewById(R.id.text);
// ...

// Instantiate the RequestQueue.
RequestQueue queue = Volley.newRequestQueue(this);
String url ="http://example.com/api/login/your_username/your_password";

// Request a string response from the provided URL.
StringRequest stringRequest = new StringRequest(Request.Method.GET, url,
            new Response.Listener<String>() {
    @Override
    public void onResponse(String response) {
        // Display the first 500 characters of the response string.
        mTextView.setText("Response is: "+ response.substring(0,500));
    }
}, new Response.ErrorListener() {
    @Override
    public void onErrorResponse(VolleyError error) {
        mTextView.setText("That didn't work!");
    }
});