|
|
@@ -5,6 +5,8 @@
|
|
|
# > 美团外卖助手
|
|
|
^https?:\/\/i\.waimai\.meituan\.com/openh5/poi/comments url script-response-body https://git.jojo21.top/shawenguan/Quantumult-X/raw/master/Scripts/meituan/meituanHelper.js
|
|
|
|
|
|
+^https?:\/\/wx\.waimai\.meituan\.com/weapp/v1/comment/mycommentlist url script-response-body https://git.jojo21.top/shawenguan/Quantumult-X/raw/master/Scripts/meituan/meituanHelper.js
|
|
|
+
|
|
|
[MITM]
|
|
|
hostname = i.waimai.meituan.com
|
|
|
|
|
|
@@ -44,6 +46,8 @@ function checkHandleRequest() {
|
|
|
default:
|
|
|
if (path.indexOf('/openh5/poi/comments') > -1) {
|
|
|
handleComments();
|
|
|
+ } else if (path.indexOf('/weapp/v1/comment/mycommentlist') > -1) {
|
|
|
+ handleMyCommentlist();
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
|
@@ -90,7 +94,44 @@ function handleComments() {
|
|
|
"bigPicUrl": "http://p0.meituan.net/wmcomment/e45cd5506cbaf95ad9a9c9f337bfc5a9712471.jpg@330w_330h_1e_1c",
|
|
|
"originalPicUrl": "http://p0.meituan.net/wmcomment/e45cd5506cbaf95ad9a9c9f337bfc5a9712471.jpg"
|
|
|
}
|
|
|
- ]
|
|
|
+ ];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ gRetBody = rspData;
|
|
|
+}
|
|
|
+
|
|
|
+function handleMyCommentlist() {
|
|
|
+ let rspData = getResponsePlainData();
|
|
|
+ if (!rspData) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (rspData.code != 0) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ let list = rspData.data.comments;
|
|
|
+ for (let i = 0; i < list.length; i++) {
|
|
|
+ const element = list[i];
|
|
|
+ if (element.user_id == 9659434) {
|
|
|
+ if (element.comment_pics.length == 0) {
|
|
|
+ element.comment_pics = [
|
|
|
+ {
|
|
|
+ "smallPicUrl": "http://p0.meituan.net/wmcomment/bdaef042083440d7b6c8152ee261d225823212.jpg@160w_160h_1e_1c",
|
|
|
+ "bigPicUrl": "http://p0.meituan.net/wmcomment/bdaef042083440d7b6c8152ee261d225823212.jpg@330w_330h_1e_1c",
|
|
|
+ "originalPicUrl": "http://p0.meituan.net/wmcomment/bdaef042083440d7b6c8152ee261d225823212.jpg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "smallPicUrl": "http://p0.meituan.net/wmcomment/39193fe6d96ae630ac3bd0d96d185773713562.jpg@160w_160h_1e_1c",
|
|
|
+ "bigPicUrl": "http://p0.meituan.net/wmcomment/39193fe6d96ae630ac3bd0d96d185773713562.jpg@330w_330h_1e_1c",
|
|
|
+ "originalPicUrl": "http://p0.meituan.net/wmcomment/39193fe6d96ae630ac3bd0d96d185773713562.jpg"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "smallPicUrl": "http://p0.meituan.net/wmcomment/e45cd5506cbaf95ad9a9c9f337bfc5a9712471.jpg@160w_160h_1e_1c",
|
|
|
+ "bigPicUrl": "http://p0.meituan.net/wmcomment/e45cd5506cbaf95ad9a9c9f337bfc5a9712471.jpg@330w_330h_1e_1c",
|
|
|
+ "originalPicUrl": "http://p0.meituan.net/wmcomment/e45cd5506cbaf95ad9a9c9f337bfc5a9712471.jpg"
|
|
|
+ }
|
|
|
+ ];
|
|
|
}
|
|
|
}
|
|
|
}
|