91 条回复  ·  9815 次点击
leegradyllljjjj 初学 2025-11-3 16:11:23
然并卵
jianghuan2 初学 2025-11-3 16:17:44
iOS 开屏广告还在,但是!推荐中的推广广告没有了。
tool2dx 初学 2025-11-3 16:24:50
B 站换个推送广告 ID 就行了, 别看视频很多, 全部都是有时效性的, 估计有效的就那么几个.
vipfts 初学 2025-11-3 16:56:45
@ultimate42 抓住一个工作不饱和的, 回来返工 https://i.imgur.com/aF7QiE5.png https://i.imgur.com/aF7QiE5.png https://i.imgur.com/aF7QiE5.png
Need4more 初学 2025-11-3 17:04:25
site:bilibili.com intitle:别家素材
chunjilikafa1456 初学 2025-11-3 17:06:47
有人做一个一键拉黑广告用户的开源项目吗?
Need4more 初学 2025-11-3 17:09:39
@chunjilikafa1456 // 在 B 站打开任意 page (已登录),在控制台粘贴运行 const uids = [1042653845, 1055149070, 1075400468, 1148923121, 1152997930, 1188004959, 1208114979, 1227735707, 1252039983, 1257852431, 1302669433, 1356882480, 1430439192, 1627242161, 1642531925, 1655279349, 1720634591, 1743345026, 1798118517, 1806922031, 1817661914, 1826766269, 1859459400, 1919627194, 1926952280, 1956866386, 1957313739, 1987938455, 1992873935, 2024349971, 2067273601, 2072500476, 2101682498, 2103756604, 2115931056, 2118239887, 2126699792]; // 从 document.cookie 里尝试提取 csrf token bili_jct function getCookie(name) { const m = document.cookie.match(new RegExp('(^|; )' + name + '=([^;]*)')); return m ? decodeURIComponent(m[2]) : ''; } const bili_jct = getCookie('bili_jct'); if(!bili_jct) { console.error('无法找到 bili_jct ,请确保已登录并且 cookie 可用'); } async function blockUid(uid) { const url = 'https://api.bilibili.com/x/relation/modify?statistics=%7B%22appId%22:100,%22platform%22:5%7D'; const body = new URLSearchParams({ fid: String(uid), act: '5', re_src: '11', gaia_source: 'web_main', extend_content: JSON.stringify({ entity: 'user', entity_id: String(uid) }), csrf: bili_jct }); const resp = await fetch(url, { method: 'POST', headers: { 'content-type': 'application/x-www-form-urlencoded', 'origin': 'https://space.bilibili.com', 'referer': `https://space.bilibili.com/${uid}/dynamic`, }, body: body.toString(), credentials: 'include' }); const j = await resp.json().catch(()=>null); return { uid, status: resp.status, body: j ?? null }; } (async () => { for (const uid of uids) { // 可选延时:await new Promise(r=>setTimeout(r, 300)); const r = await blockUid(uid); console.log(r); } console.log('finished'); })();
hingle 初学 2025-11-3 17:11:08
单独开发还要考虑广告视频的存储、域名、CDN 等,这个直接用现成的了。 QQ 、微信很多账号也是这样做的。
elron 小成 2025-11-3 17:11:32
说这广告设计好的这辈子有了
uo 初学 2025-11-3 17:13:09
v 站有没有这样的设定
返回顶部