换个二次元图源API试试
This commit is contained in:
parent
a83e92b947
commit
2da36d7918
@ -6,7 +6,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class QQBotApplication {
|
||||
public static final String version="QQBot v.1.2.15";
|
||||
public static final String version="QQBot v.1.2.16";
|
||||
public static void main(String[] args) {
|
||||
System.out.println("version = " + version);
|
||||
SpringApplication.run(QQBotApplication.class, args);
|
||||
|
@ -30,10 +30,10 @@ public class GetSeTu extends Model {
|
||||
public void onMessage(Long qq, MessageEvent event, boolean isGroup) {
|
||||
super.onMessage(qq, event, isGroup);
|
||||
if ("来点色图".equals(msg) || "来点涩图".equals(msg)) {
|
||||
String ret = HttpTools.get("https://www.dmoe.cc/random.php?return=json");
|
||||
String ret = HttpTools.get("https://api.lolicon.app/setu/v2?r18=2");
|
||||
JSONObject json = JSONObject.parseObject(ret);
|
||||
HttpTools.download(json.getString("imgurl"),
|
||||
"setu.jpg", new DownloadInterface() {
|
||||
HttpTools.download(json.getJSONArray("data").getJSONObject(0).getJSONObject("urls").getString("original"),
|
||||
System.currentTimeMillis()+"_setu.jpg", new DownloadInterface() {
|
||||
@Override
|
||||
public void onDownload(File file) {
|
||||
super.onDownload(file);
|
||||
|
Loading…
Reference in New Issue
Block a user