B站短链转长链接。例如 https://b23.tv/f9xEBg6转‘https://www.bilibili.com/video/BV1zX4y1C755或者https://www.bilibili.com/video/B ... e9a52c77661ccf54c3f都可。 链接, b23
跟上一个一样吧。 [PowerShell] 纯文本查看 复制代码foreach($line in gc d:\1.txt){ $url = (iwr -uri $line).BaseResponse.ResponseUri.AbsoluteUri echo "$line => $url"}
额,上面那个拿的短链可以直接转,你这个的话,可能太长了,还是用路径方便些。 [PowerShell] 纯文本查看 复制代码foreach($line in gc .\file.txt){ $url = (iwr -uri $line).BaseResponse.ResponseUri.AbsolutePath $host = "https://www.bilibili.com" echo "$line => $host$url" }
虽然看起来是两位在互动,但我回了帖,为了避免被认为是水帖,还是附一份 demo 上来: [Python] 纯文本查看 复制代码import requests short_url = "https://b23.tv/f9xEBg6" response = requests.head(short_url, allow_redirects=True) ori_url = response.url print(ori_url) 如果需要筛掉后面的 GET 参数,用正则就行,使用表达式:(.*?)\?.*
[quote] rainisa 发表于 2023-5-20 20:51 额,上面那个拿的短链可以直接转,你这个的话,可能太长了,还是用路径方便些。 [PowerShell] 纯文本查看 复制代码 论坛自作主张添加了标签,怎么修改都不行,使用的时候去掉。 [mw_shl_code=powershell,true]foreach($line in gc .\file.txt){ $url = (iwr -uri $line).BaseResponse.ResponseUri.AbsolutePath echo "$line => https://www.bilibili.com$url" }