-
我在写一个漫画的书源,正文规则处已经能够正常获取到漫画图片链接,并给页面填上对应的img标签。 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
经过tg群组里大佬点播,已经找到方法了。按照文档里(2、Legado的特殊规则-->URL必知必会-->GET请求)的这个写法 |
Beta Was this translation helpful? Give feedback.
经过tg群组里大佬点播,已经找到方法了。按照文档里(2、Legado的特殊规则-->URL必知必会-->GET请求)的这个写法
https://www.baidu.com,{ "charset": "gbk", "headers": "{\"User-Agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\"}", "webView": true }
我的正文部分改为了
id.challenge-error-text@text||[email protected]__image@data-page-image-url@js: list=result.split("\n"); tmp=',{ "headers": { "Referer": "https://xxx.com" }, "webView": true}' html=''; for(i in list){ html+='<img src="'+list[i]+tmp+'">\n' } html
为每个img标签的src网址出加上一个用来绕过cf人机校验的请求头,便可以正常获取了