调整摸鱼日历API

This commit is contained in:
yutou 2023-06-20 17:48:04 +08:00
parent 4f5bcc9df3
commit 808798028f

View File

@ -51,9 +51,9 @@ public class Moyu extends Model {
private void downloadImage(boolean isSend, Long qq) {
Log.i(this, "下载图片");
String ret = HttpTools.get("https://api.j4u.ink/v1/store/other/proxy/remote/moyu.json");
String ret = HttpTools.get("https://api.vvhan.com/api/moyu?type=json");
JSONObject json = JSON.parseObject(ret);
HttpTools.download(json.getJSONObject("data").getString("moyu_url"), AppTools.getToDayTime() + "_moyu.jpg", new DownloadInterface() {
HttpTools.download(json.getString("url"), AppTools.getToDayTime() + "_moyu.jpg", new DownloadInterface() {
int count = 3;
@Override
@ -86,4 +86,8 @@ public class Moyu extends Model {
downloadImage(true, qq);
}
}
public static void main(String[] args) {
}
}