抓包
可以自己搭建服务器抓包
举例,别人的:
抓包的时候可以自己搭建服务器,用于嗅探记录,拦截请求数据包,或者叫转发数据号,记录当前传入和传出的参数,也就是请求和响应的各种参数记录下来,类似于这种效果:
--- 机器参数.
-- @table rfaker
-- @string name 设备名称 e.g. "“xxx”的 iPhone"
-- @string hw_machine_name e.g. "iPhone 11 Pro Max"
-- @string ssid e.g. "TP_LINK_E-BoJingEr-557-OFFICE"
-- @tparam integer create_time e.g. 创建时间 1654709286
-- @string locale_identifier e.g. "CN"
-- @string remark 备注 e.g. null
-- @number lon e.g. 123.98118244667
-- @string app_times e.g. null
-- @string network_state e.g. "WIFI"
-- @string localtion e.g. null
-- @string idfa e.g. "91566BBD-C5E6-48B0-85CA-6E0C68663F69"
-- @string hw_machine e.g. "iPhone12,5"
-- @string carrier_name e.g. "数码通"
-- @string build_version e.g. "18G82"
-- @string system_version e.g. "14.7.1"
-- @number lat e.g. 33.814002430383
-- @string current_radioaccess_technology e.g. "CTRadioAccessTechnologyLTE"
-- @string mobile_network_code e.g. "06"
--- 当前参数.
-- @function faker
-- @apiget http://127.0.0.1:1688/api/v1/machine/faker
-- @treturn rfaker 返回当前工作参数
-- @usage
-- -- 返回结果如:(json)
-- {
-- "name":"“xxx”的 iPhone",
-- "hw_machine_name":"iPhone 11 Pro Max",
-- "ssid":"TP_LINK_E-BoJingEr-557-OFFICE",
-- "create_time":1654709286,
-- "locale_identifier":"CN",
-- "remark":null,
-- "lon":123.98118244667,
-- "app_times":null,
-- "network_state":"WIFI",
-- "localtion":null,
-- "idfa":"91566BBD-C5E6-48B0-85CA-6E0C68663F69",
-- "hw_machine":"iPhone12,5",
-- "carrier_name":"数码通",
-- "build_version":"18G82",
-- "system_version":"14.7.1",
-- "lat":33.814002430383,
-- "current_radioaccess_technology":"CTRadioAccessTechnologyLTE",
-- "mobile_network_code":"06"
-- }