此包已被废弃,不再维护。未建议替代包。

一个帮助与PMG API交互的库

1.3.2 2020-07-14 17:25 UTC

This package is auto-updated.

Last update: 2021-09-14 20:04:13 UTC


README

通过Composer安装

composer require pathfindermediagroup/api-library

使用方法

<?php

$auth = new \PathfinderMediaGroup\ApiLibrary\Auth\TokenAuth('yourapitokenhere');

$api =  new \PathfinderMediaGroup\ApiLibrary\Api\SetApi($auth);

$allSets = $api->getAll();

$specificSet = $api->get(1);

$setSearch = $api->search('ebon armor');