Giter Site home page Giter Site logo

微博广告新url about surge HOT 5 OPEN

ZhiyuanMa2017 avatar ZhiyuanMa2017 commented on July 21, 2024 1
微博广告新url

from surge.

Comments (5)

ZhiyuanMa2017 avatar ZhiyuanMa2017 commented on July 21, 2024 1

这个和下面的两种同时存在,都需要

https://api.weibo.cn/2/searchall 搜索页面的广告
这个url现在对应的json样式如下:
image
image

surge/wb_ad.js

Line 17 in 613f9b2

const path13 = "/searchall";

surge/wb_ad.js

Lines 99 to 108 in 613f9b2

} else if (
url.indexOf(path9) != -1 ||
url.indexOf(path12) != -1 ||
url.indexOf(path13) != -1 ||
url.indexOf(path14) != -1 ||
url.indexOf(path16) != -1
) {
let obj = JSON.parse(body);
if (obj.cards) obj.cards = filter_timeline_cards(obj.cards);
body = JSON.stringify(obj);

所以这个判断方式不起作用了,需要直接判断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

from surge.

ZhiyuanMa2017 avatar ZhiyuanMa2017 commented on July 21, 2024

https://api.weibo.cn/2/statuses/extend 单条微博看评论的界面
这个url现在对应的json样式如下:
image
所以

const path3 = "/statuses/extend";

surge/wb_ad.js

Lines 54 to 57 in 613f9b2

} else if (url.indexOf(path3) != -1) {
let obj = JSON.parse(body);
if (obj.trend) delete obj.trend;
body = JSON.stringify(obj);

应该改成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

from surge.

ZhiyuanMa2017 avatar ZhiyuanMa2017 commented on July 21, 2024

https://api.weibo.cn/2/statuses/repost_timeline 单条微博看转发的页面
对应json:
image
image

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里的用法:
^https://api.weibo.cn/2/statuses/repost_timeline url script-response-body https://raw.githubusercontent.com/ZhiyuanMa2017/Scripts/master/wb_ad_test_5.js

06/27/2024 update:
现在广告在 hot_reposts 中了,逻辑跟上述代码类似,我更新了 wb_ad_test_5.js,所以 Quantumult X 用法不变。

from surge.

Jay17642121508 avatar Jay17642121508 commented on July 21, 2024

from surge.

ZhiyuanMa2017 avatar ZhiyuanMa2017 commented on July 21, 2024

https://api.weibo.cn/2/searchall 搜索页面的广告
对应json:
image

现在需要判断 obj.items[i].items[i].data, 可参考我的js: https://github.com/ZhiyuanMa2017/Scripts/blob/master/wb_ad_test_6.js
我对card_typetitle_extra_text 做判断,如果true就删掉最上层的items[i]

对于 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/searchall url script-response-body https://raw.githubusercontent.com/ZhiyuanMa2017/Scripts/master/wb_ad_test_6.js

from surge.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.