2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > CSGO电竞数据API接口 - 【赛事数据】API调用示例代码

CSGO电竞数据API接口 - 【赛事数据】API调用示例代码

时间:2020-12-18 03:23:19

相关推荐

CSGO电竞数据API接口 - 【赛事数据】API调用示例代码

分享使用 野子科技 https://xxe.io/ 接口调用的示例代码,CSGO的【战队列表】接口。

import com.alibaba.fastjson.JSON;import com.alibaba.fastjson.annotation.JSONField;import java.nio.charset.StandardCharsets;import java.nio.file.Files;import java.nio.file.Paths;import java.util.List;/*** @API: 战队列表* @Website: https://xxe.io*/public class CsgoTeam {public static void main(String[] args) {try {String content = getContent();Respond rsp = JSON.parseObject(content, Respond.class);System.out.println(rsp.code);System.out.println(rsp.message);rsp.getData().forEach(System.out::println);} catch (Throwable t) {t.printStackTrace();}}/*** 获取API返回内容* <p>* Note: 这里为了方便测试我使用了一份本地文件,使用时应替换为真实接口返回内容*/private static String getContent() {try {StringBuilder builder

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。