A simple android app that keeps log of your calls and can be accessed via HTTP request within same network.
curl http://<SERVER_HOST>:<PORT>
{
"start": "Jul 13, 2022 19:54:29",
"services": [
{
"name": "status",
"uri": "http://<SERVER_HOST>:<PORT>/services/status"
},
{
"name": "log",
"uri": "http://<SERVER_HOST>:<PORT>/services/logs"
}
]
}
curl http://<SERVER_HOST>:<PORT>/services/status
{"name": "John Doe", "number": "+12345678902"}
curl http://<SERVER_HOST>:<PORT>/services/logs
[
{
"date": 1657735473853,
"duration": 3,
"name": "John Doe",
"number": "+12345678903",
"queryCount": 2,
"uId": "696"
},
{
"date": 1657734888072,
"duration": 0,
"name": "Kevin Sneijder",
"number": "+12345678903",
"queryCount": 1,
"uId": "695"
}
]