我有一个正在使用 Post API 的 Android 应用程序,并且 Post API 放置在服务器上。 所以基本上我想记录或跟踪该应用程序对 API 的每个请求以及 API 的响应。
如果有 PHP 或其他开源脚本可以帮助我满足我的要求,任何人都可以帮忙吗?
此外:实际上我是从服务器看到这一点并监控前景的,比如有多少请求从客户端接收到服务器的 API 以及这些请求的响应是什么。类似于跟踪客户呼叫和响应的其他脚本。
例如:
sample-api.php //Post API which are placed on server
tracking.php // tracking is a script or any project which tracks the sample-api.php how many time its call and what the response on that time.
mobile1-app // is the mobile app which call API sample-api.php from server
您想追踪什么?响应时间?有效负载本身? 不确定是否有用,但像 Moesif Api 和 Fiddler 这样的工具可以跟踪生产或开发环境中的请求和响应负载。