Ne pas mettre à jour activement | Ne pas refuser d'utiliser | Non responsable de la maintenance
Bika3 est un client de bande dessinée Bika tiers sur la plateforme Windows. Ce projet est uniquement destiné à l'apprentissage et à la communication. Il ne peut pas être source fermée et son utilisation commerciale est strictement interdite.
bika3.exe
Si vous utilisez Windows 10, installez ce qui suit pour améliorer votre expérience :
Ne supprimez rien du dossier à volonté, sinon cela pourrait entraîner des problèmes d'inopérabilité.
Si vous rencontrez des problèmes de réseau, veuillez utiliser un proxy.
Cette application en est à ses premiers stades de développement et ses fonctionnalités ne sont pas encore complètes.
Grâce aux projets suivants :
CoreApi est un wrapper d'API PicACG pour dotnet.
var client = new Pica3 . CoreApi . PicaClient ( ) ;
await client . LoginAsync ( " account " , " password " ) ;
// Then do any other thing, see method comment for more information.
La déviation utilise l'IP au lieu du nom de domaine pour contourner le blocage SNI. PicaClient dispose d'une fonction de déviation intégrée.
Déchargement de l'API
// 获取分流 IP
List < string > ipList = client . GetIpListAsync ( ) ;
// 以上方法的返回值只有 IP,不包含 https:// 前缀
Uri uri = new Uri ( " https://172.67.7.24 " ) ;
// 构造时设置分流
var client = new Pica3 . CoreApi . PicaClient ( proxy : null , address : uri ) ;
// 也可以在构造后修改
client . ChangeProxyAndBaseAddress ( proxy : null , address : uri ) ;
// 后续的请求均发送至指定的 IP
Détournement d'image
// 图片链接
const string url = " ... " ;
// 访问图片不需要鉴权,此方法发出的请求不会携带账号信息
HttpResponseMessage response = await client . GetImageResponseAsync ( url ) ;
byte [ ] bytes = await response . Content . ReadAsByteArrayAsync ( ) ;
La fonction de déchargement est très simple à mettre en œuvre. Remplacez simplement le nom de domaine dans le lien par IP, puis ajoutez manuellement le nom de domaine à l'en-tête. Cependant, il convient de noter que certains liens d'images peuvent être redirigés vers une nouvelle adresse. Le lien d'origine ne peut pas être détourné et la nouvelle adresse après redirection doit être utilisée. Heureusement, les règles de redirection sont très évidentes.
Les exemples suivants ont répondu aux besoins actuels. Il peut y avoir d'autres règles que j'ajouterai après les avoir rencontrées.
# 登录
url : https://picaapi.picacomic.com/auth/sign-in
--- >
url : https://172.67.7.24/auth/sign-in
header :
Host : picaapi.picacomic.com
# 漫画正文图片(无重定向)
url : https://storage1.picacomic.com/static/ed8caaeb-fe13-4363-9387-d5c6f2867cb1.jpg
--- >
url : https://172.67.7.24/static/ed8caaeb-fe13-4363-9387-d5c6f2867cb1.jpg
header :
Host : storage1.picacomic.com
# 漫画封面图片
url : https://storage1.picacomic.com/static/tobeimg/6YdZfey4tqYNaWfyZzOiRXssvxY8yZDoTXVH2BrL62Q/rs:fill:300:400:0/g:sm/aHR0cHM6Ly9zdG9yYWdlMS5waWNhY29taWMuY29tL3N0YXRpYy8wMDJhNzZmYi0wY2Q1LTQ4ODktOWQwMC01ODFhMDUyN2Q3YzkuanBn.jpg
# 重定向到不同域名
# -- https://img.picacomic.com/6YdZfey4tqYNaWfyZzOiRXssvxY8yZDoTXVH2BrL62Q/rs:fill:300:400:0/g:sm/aHR0cHM6Ly9zdG9yYWdlMS5waWNhY29taWMuY29tL3N0YXRpYy8wMDJhNzZmYi0wY2Q1LTQ4ODktOWQwMC01ODFhMDUyN2Q3YzkuanBn.jpg
--- >
url : https://172.67.7.24/6YdZfey4tqYNaWfyZzOiRXssvxY8yZDoTXVH2BrL62Q/rs:fill:300:400:0/g:sm/aHR0cHM6Ly9zdG9yYWdlMS5waWNhY29taWMuY29tL3N0YXRpYy8wMDJhNzZmYi0wY2Q1LTQ4ODktOWQwMC01ODFhMDUyN2Q3YzkuanBn.jpg
header :
Host : img.picacomic.com
# 个人头像图片
url : https://storage-b.picacomic.com/static/tobs/c86fa457-7843-456a-8572-c77adbaedc5b.jpg
# 重定向到相同域名
# -- https://storage-b.picacomic.com/static/c86fa457-7843-456a-8572-c77adbaedc5b.jpg
--- >
url : https://172.67.7.24/static/c86fa457-7843-456a-8572-c77adbaedc5b.jpg
header :
Host : storage-b.picacomic.com