-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
微博广告新url #115
Comments
这个和下面的两种同时存在,都需要 https://api.weibo.cn/2/searchall 搜索页面的广告 Line 17 in 613f9b2
Lines 99 to 108 in 613f9b2
所以这个判断方式不起作用了,需要直接判断 obj.items[i].mblogtype Quantumult X里的用法: ^https://api.weibo.cn/2/searchall url script-response-body https://raw.githubusercontent.com/ZhiyuanMa2017/Scripts/master/wb_ad_test_2.js |
https://api.weibo.cn/2/statuses/extend 单条微博看评论的界面 Line 7 in 613f9b2
Lines 54 to 57 in 613f9b2
应该改成 obj.head_cards 就可以了Quantumult X里的用法: ^https://api.weibo.cn/2/statuses/extend url script-response-body https://raw.githubusercontent.com/ZhiyuanMa2017/Scripts/master/wb_ad_test_4.js |
https://api.weibo.cn/2/statuses/repost_timeline 单条微博看转发的页面 if (obj.reposts && obj.reposts.length > 0) {
let i = obj.reposts.length;
while (i--) {
if (obj.reposts[i].mblogtype && obj.reposts[i].mblogtype == 1) {
obj.reposts.splice(i, 1);
}
}
} Quantumult X里的用法: 06/27/2024 update: |
这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
https://api.weibo.cn/2/searchall 搜索页面的广告 现在需要判断 对于 https://api.weibo.cn/2/searchall ,这种样式的json和上面提到的json同时存在,有两种返回结果,现在我的做法: if (obj.items && obj.items.length > 0) {
let i = obj.items.length;
while (i--) {
if (obj.items[i].data && obj.items[i].data.mblogtype && obj.items[i].data.mblogtype == 1) {
obj.items.splice(i, 1);
} else if (isAd(obj.items[i])) {
obj.items.splice(i, 1);
}
}
}
function isAd(item) {
if (item.items) {
let n = item.items.length
for (let i = 0; i < n; i++) {
let cur = item.items[i];
if (cur.data && cur.data.card_type && cur.data.card_type == 22) {
return true;
}
if (cur.data && cur.data.title_extra_text && cur.data.title_extra_text == "\u5e7f\u544a") {
return true;
}
}
}
return false;
} Quantumult X里的用法: |
https://api.weibo.cn/2/profile/container_timeline
在浏览用户主页时插入到该用户微博timeline中,json样式如下:
同样有
"mblogtype" : 1
的标记,所以可以使用已有的方法来处理。surge/wb_ad.js
Lines 279 to 285 in 613f9b2
Quantumult X里的用法:
^https://api.weibo.cn/2/profile/container_timeline url script-response-body https://raw.githubusercontent.com/ZhiyuanMa2017/Scripts/master/wb_ad_test_2.js
The text was updated successfully, but these errors were encountered: