Releases: xivapi/xivapi-php
Releases · xivapi/xivapi-php
Fixes 1.6.1
1.6.2 Fixes
Update api key param
This change is intended for staging, the update will roll out to production soon.
New release for the new XIVAPI
Merge pull request #4 from xivapi/mogboard Mogboard
BC
Env set, Placeholder market method
1.2.2 Merge remote-tracking branch 'origin/master'
Fix character search
Fix for the character search endpoint
Add async logic
This release allows you to do async concurrent requests. You will need an API key to do these and not be rate limited
$api = new \XIVAPI\XIVAPI();
$api->environment->key('');
// using concurrent
use GuzzleHttp\Promise;
$promises = [
'item1' => $api->async()->content->Item()->one(1675),
'item2' => $api->async()->content->Item()->one(5),
'item3' => $api->async()->content->Item()->one(2546),
];
$results = Promise\settle($promises)->wait();
$items = $api->unwrap($results);
print_r( $items->item1->Name . PHP_EOL);
print_r( $items->item2->Name . PHP_EOL);
print_r( $items->item3->Name . PHP_EOL);
Fix endpoint for obtaining companion tokens
1.1.5 Fix endpoint for companion tokens
Fix issue with handling arrays in search
1.1.4 Fix array handling in search
Fix bug with search filters
Minor bug fix with search filters