Fortnite API html

时间:2018-07-18 10:31:11

标签: php api server

我想将我的堡垒统计数据放到我的网站HTML / CSS上。我发现this。 但是我不太了解php,所以我需要您的帮助。我是否必须删除以下内容:'your_api_key'并放置:your_api_key不包含''?
还有像这样的行:

    $this->auth = new Fortnite_Auth($this);
    $this->challenges = new Fortnite_Challenges($this);
    $this->leaderboard = new Fortnite_Leaderboard($this);
    $this->items = new Fortnite_Items($this);
    $this->news = new Fortnite_News($this);
    $this->patchnotes = new Fortnite_PatchNotes($this);
    $this->pve = new Fortnite_PVE($this);
    $this->status = new Fortnite_Status($this);
    $this->weapons = new Fortnite_Weapons($this);
    $this->user = new Fortnite_User($this)

我必须修改一些内容吗?

(以下是一些信息:
-user_id:501b9f2dfda34249a2749467513172bf
-用户名:NoMaD_DEEPonion
-平台:pc
-windows:第5季

对于所有这些代码,我都使用了xammp服务器(希望它很好)
谢谢您的帮助

2 个答案:

答案 0 :(得分:0)

您应该始终引用''您的密钥/字符串。看起来像这样:

$api->setKey('123qwerty456');
$api->user->id('NoMaD_DEEPonion');

请阅读他们的documentation。您应该从他们那里获取API密钥以开始使用。而且您不必编辑Client.php。您应该改为包含文件。尝试包含Autoloader.php,因为它需要必需的文件。
XAMPP可以进行开发,但不适合生产/公开使用。祝你好运!

答案 1 :(得分:0)

@sykez写了什么。

我个人使用https://fortniteapi.com/来获取数据。他们还有一个甜美的POSTMAN页面,其中包含不同的请求https://documenter.getpostman.com/view/4499368/RWEjoGqD

最后。我不太确定这是否是开始学习PHP的好项目。我真的建议您在进入API调用,处理数组等之前先了解PHP的基础。