Merge branch 'main' of https://github.com/FongMi/CatVodSpider
This commit is contained in:
commit
52eee7a5c2
|
|
@ -8,7 +8,7 @@ android {
|
|||
|
||||
defaultConfig {
|
||||
applicationId "com.github.catvod.demo"
|
||||
minSdk 16
|
||||
minSdk 17
|
||||
targetSdk 28
|
||||
ndk { abiFilters "armeabi-v7a" }
|
||||
buildConfigField("String", "CLIENT_ID", "\"${clientId}\"")
|
||||
|
|
|
|||
|
|
@ -118,9 +118,9 @@ public class API {
|
|||
|
||||
private HashMap<String, String> getHeaderAuth() {
|
||||
HashMap<String, String> headers = getHeader();
|
||||
headers.put("authorization", user.getAuthorization());
|
||||
headers.put("x-share-token", shareToken);
|
||||
headers.put("X-Canary", "client=Android,app=adrive,version=v4.3.1");
|
||||
if (user.isAuthed()) headers.put("authorization", user.getAuthorization());
|
||||
return headers;
|
||||
}
|
||||
|
||||
|
|
@ -134,7 +134,7 @@ public class API {
|
|||
//https://api-cf.nn.ci/alist/ali_open/
|
||||
//https://api.xhofe.top/alist/ali_open/
|
||||
//https://sni_api_nn_ci.cooluc.com/alist/ali_open/
|
||||
String api = "https://api.xhofe.top/alist/ali_open/" + url;
|
||||
String api = "https://aliapi.ewwe.gq/alist/ali_open/" + url;
|
||||
OkResult result = OkHttp.postJson(api, body.toString(), getHeader());
|
||||
SpiderDebug.log(result.getCode() + "," + api + "," + result.getBody());
|
||||
if (isManyRequest(result.getBody())) return false;
|
||||
|
|
@ -535,9 +535,7 @@ public class API {
|
|||
FrameLayout frame = new FrameLayout(Init.context());
|
||||
params.gravity = Gravity.CENTER;
|
||||
frame.addView(image, params);
|
||||
dialog = new AlertDialog.Builder(Init.getActivity()).setView(frame).create();
|
||||
dialog.setOnDismissListener(this::dismiss);
|
||||
dialog.show();
|
||||
dialog = new AlertDialog.Builder(Init.getActivity()).setView(frame).setOnDismissListener(this::dismiss).show();
|
||||
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
|
||||
Init.show("請使用阿里雲盤 App 掃描二維碼");
|
||||
} catch (Exception ignored) {
|
||||
|
|
|
|||
|
|
@ -53,6 +53,10 @@ public class User {
|
|||
return getTokenType() + " " + getAccessToken();
|
||||
}
|
||||
|
||||
public boolean isAuthed() {
|
||||
return getTokenType().length() > 0 && getAccessToken().length() > 0;
|
||||
}
|
||||
|
||||
public User clean() {
|
||||
this.refreshToken = "";
|
||||
this.accessToken = "";
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1 +1 @@
|
|||
16f80f13f3bd4b6fedfb3af5f5b3d3d0
|
||||
493c8d428897bd6133ffd22eb1cb0495
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"spider": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;16f80f13f3bd4b6fedfb3af5f5b3d3d0",
|
||||
"spider": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;493c8d428897bd6133ffd22eb1cb0495",
|
||||
"wallpaper": "https://gao.chuqiuyu.tk",
|
||||
"sites": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"spider": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;16f80f13f3bd4b6fedfb3af5f5b3d3d0",
|
||||
"spider": "https://raw.githubusercontent.com/FongMi/CatVodSpider/main/jar/custom_spider.jar;md5;493c8d428897bd6133ffd22eb1cb0495",
|
||||
"wallpaper": "http://饭太硬.top/深色壁纸/api.php",
|
||||
"sites": [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue