大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说微信年度账单是不是真实消费_支付宝可以查年度账单吗,希望您对编程的造诣更进一步.
前言
1.调试微信获取微信账单接口
2.分析微信账单列表接口
3.通过编写代码获取账单保存至数据库
4.通过SQL输出年度账单统计信息
4.1 按年度总支出与收入
4.2 按消费类型统计
4.3 按月份收入支出净额统计
4.4 按消费数量统计
后记
前言
支付宝出了年度账单,再也不敢说今年没花多少钱了,想了想平时大额支付都用支付宝,小额支付用的微信,这微信的账单数据还没统计进来,嗯…
微信出了《2018微信数据报告》但没有消费年度账单,微信钱包的账单中有个月账单功能能看到个大概每个月的支出收入,也可以导出账单记录只能导出三个月,统计一年的还得分四次导出是csv格式的还得合并什么的,数据比较简单感觉没啥用,我的想法是通过接口请求的方式获取2018年所有微信消费账单,导入数据库后通过sql查询统计信息
1、调试微信获取微信账单接口
先看微信账单页面进入的时候加载了个进度条明显是H5的页面
1.1、先打开微信调试功能,在微信里打开这个链接(地址:debugx5.qq.com),勾选调试 1.2、将Android手机连上电脑,在手机开发者选项里开启USB调试,微信打开账单页面。
1.3、在chrome上打开Inspect页面,点击账单inspect。
1.4、滑下账单列表拉取下数据就能看到请求了,还有response中返回的json信息
2、分析微信账单列表接口
可以看到账单Api是get请求接口为:wx.tenpay.com/userroll/us…
请求参数为和返回结果json结构如下,record就是具体的账单列表
通过查看请求参数和返回结果发现,exportkey不变,只需要把请求返回的结果中的参数拼接到下一次请求的query参数里面可以一直请求翻页,query中last_create_time和start_time是一样的,是翻页时的上一笔账单的时间,可以定为小于2018年1月1日的时间就跳出循环,这样就获取到2018年的所有账单。
当然这里面有坑,模拟请求的时候最好是所有的header都带上,这里面的参数是有过期时间的并且很快就过期了,分别是exportkey、request header中的Cookie里的userroll_encryption、userroll_pass_ticket,其它的直接copy即可。这里没有找到它们的生成规律,过期了需要重新通过抓取接口查看这三个参数。
3、通过编写代码获取账单保存至数据库
最近在看后端开发,一直用Java写Android还没写过服务端代码,正好来练练手。IntelliJ IDEA和Android Studio几乎一样上手比较友好。
先通过账单的json建好数据库表,再建立模型bean,再写业务逻辑,做后数据库操作。
主要逻辑代码如下:
// @Async("taskExecutor")
public void createGetBillTask( String exportkey, String userroll_encryption, String userroll_pass_ticket) {
DemoApplication.logger.warn("创建任务:" + exportkey);
//copy head头信息
Map<String, String> headMaps = new LinkedHashMap<>();
headMaps.put("Accept", "*/*");
headMaps.put("Accept-Encoding", "gzip, deflate");
headMaps.put("Accept-Language", "zh-CN,en-US;q=0.8");
headMaps.put("Connection", "keep-alive");
headMaps.put("Cookie", "userroll_encryption=" + userroll_encryption + "; userroll_pass_ticket=" + userroll_pass_ticket);
headMaps.put("Host", "wx.tenpay.com");
headMaps.put("Q-Auth", "需要copy");
headMaps.put("Q-GUID", "需要copy");
headMaps.put("Q-UA2", "需要copy");
headMaps.put("Referer", "https://wx.tenpay.com/?classify_type=0");
headMaps.put("User-Agent", "Mozilla/5.0 (Linux; Android 8.0; MIX 2 Build/OPR1.170623.027; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/6.2 TBS/044408 Mobile Safari/537.36 MMWEBID/4508 MicroMessenger/7.0.1380(0x27000038) Process/tools NetType/WIFI Language/zh_CN");
headMaps.put("X-DevTools-Emulate-Network-Conditions-Client-Id", "需要copy");
headMaps.put("X-Requested-With", "com.tencent.mm");
HttpHeaders headers = new HttpHeaders();
headers.clear();
headers.setAll(headMaps);
headers.setExpires(0);
headers.setCacheControl("private, no-store, max-age=0");
HttpEntity entity = new HttpEntity(headers);
OrderResp lastResp = null;
while (true) {
String url = "https://wx.tenpay.com/userroll/userrolllist?classify_type=0&count=" + PAGE_SIZE + "&sort_type=1";
Map<String, Object> queryMaps = new LinkedHashMap<>();
if (lastResp != null) {
//小于2017-12-31 跳出
if (lastResp.getLast_create_time() < 1514736000) {
break;
}
url += "&exportkey={exportkey}&last_bill_id={last_bill_id}&last_bill_type={last_bill_type}&last_create_time={last_create_time}&last_trans_id={last_trans_id}&start_time={start_time}";
queryMaps.put("exportkey", exportkey);
queryMaps.put("last_bill_id", lastResp.getLast_bill_id());
queryMaps.put("last_bill_type", lastResp.getLast_bill_type());
queryMaps.put("last_create_time", lastResp.getLast_create_time());
queryMaps.put("last_trans_id", lastResp.getLast_trans_id());
queryMaps.put("start_time", lastResp.getLast_create_time());
}
try {
URI uri = restTemplate.getUriTemplateHandler().expand(url, queryMaps);
//网络请求账单接口拉取数据
ResponseEntity<OrderResp> resp = restTemplate.exchange(uri, HttpMethod.GET, entity, OrderResp.class);
DemoApplication.logger.warn("任务信息:" + uri.toString() + "\nheader:" + resp.getHeaders().toString());
if (!resp.getStatusCode().is2xxSuccessful()) {
DemoApplication.logger.warn("任务请求网络失败:" + resp.toString());
break;
}
OrderResp body = resp.getBody();
if (body == null || body.getRet_code() != 0 || body.getRecord() == null || body.getRecord().isEmpty()) {
DemoApplication.logger.warn("任务请求失败:" + url);
break;
}
//写入数据库
orderDao.saveAll(records);
orderDao.flush();
lastResp = body;
long timestamp = lastResp.getLast_create_time();
String format = sdf.format(new Date(timestamp * 1000));
DemoApplication.logger.warn("任务进行中:" + exportkey + ":已导入至:" + format);
} catch (Exception e) {
e.printStackTrace();
}
try {
//间隔1s
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
DemoApplication.logger.warn("完成任务" + exportkey );
}
4、通过SQL输出年度账单统计信息
完成入库后我大概有七百多条账单记录,下面举例分析一波
4.1、按年度总支出与收入
select sum(case when fee_attr='positive' then fee*0.01 else fee*-0.01 end ) as money,
sum(case when fee_attr='positive' then fee*0.01 else 0 end ) as 总收入,
sum(case when fee_attr='negtive' then fee*-0.01 else 0 end ) as 总支出
from orders
where timestamp < 1546272000 and timestamp> 1514736000
4.2、按消费类型统计
select classify_type,count(*),sum(fee * 0.01) as feesum ,
(select type_str FROM order_type WHERE orders.classify_type=order_type.type) as typestr
from orders
where timestamp < 1546272000 and timestamp> 1514736000
group by classify_type
order by feesum desc;
4.3、按月份收入支出净额统计
select FROM_UNIXTIME(timestamp,'%Y-%m') as time,
sum(case when fee_attr='positive' then fee*0.01 else 0 end ) as feesumpos,
sum(case when fee_attr='negtive' then fee*-0.01 else 0 end ) as feesumneg,
sum(case when fee_attr='positive' then fee*0.01 else fee*-0.01 end ) as feesumdda
from orders
where timestamp < 1546272000 and timestamp> 1514736000
group by time
order by time desc;
4.4、按消费数量统计
select title,count(title) as 数量
from orders
where timestamp < 1546272000 and timestamp> 1514736000
group by title
order by 数量 desc;
后记
代码比较乱主要是提供个思路,如果要参考请看Github
后续可以改进为接口输出数据 通过前端web页面图表库渲染会更直观一点,要学的技术栈还很多,当然技术只是手段主要还是是为了达到目的,2019年加油~
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/13489.html