Web Services 如何从服务器的响应中获取服务器的IP地址?

9njqaruj  于 2022-11-15  发布在  其他
关注(0)|答案(1)|浏览(168)

有没有办法从响应中获取服务器IP地址?

val stringRequest = StringRequest(Request.Method.GET, url,

    { response ->
        // How can I get the server IP address from here?
    },

    { error ->

    })
nuypyhwy

nuypyhwy1#

我找到的唯一解决方案是要求服务器在响应中包含其IP地址。

相关问题