Issue
Is there any way to get the server IP address from its response?
val stringRequest = StringRequest(Request.Method.GET, url,
{ response ->
// How can I get the server IP address from here?
},
{ error ->
})
Solution
The only solution I found is to ask the server to include its IP address inside the response.
Answered By - Denis Answer Checked By - Mildred Charles (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.