I'm using volley and I have a queue to call some APIs. The queue is filled from a database.
before adding request to volley request queue I set request tag by calling
jsonObjectRequest.setTag(id);
In response, I want to remove a column from the database that column id is equal to request tag id.
So, How can I get request tag in HttpRequest response?