A php API wrapper to connect to useragentstring.com API
A php API wrapper to connect to useragentstring.com API
The installation of this library is made via composer.
Download composer.phar
from their website.
Then add to your composer.json :
"require": {
...
"php-extended/php-useragentstring-com-api": "^2",
...
}
Then run php composer.phar update
to install this library.
The autoloading of all classes of this library is made through composer's autoloader.
You may use this library the following way :
use PhpExtended\UserAgent\UserAgentStringComApiEndpoint;
/* @var $client \Psr\Http\Client\ClientInterface */
/* @var $uriFactory \Psr\Http\Message\UriFactory */
/* @var $requestFactory \Psr\Http\Message\RequestFactory */
/* @var $apiKey string */
$endpoint = new UserAgentStringComApiEndpoint($client, $uriFactory, $requestFactory, $apiKey);
$userAgent = $endpoint->getUserAgent('<put here your user agent string (raw ascii, not encoded)>');
// $userAgent is now a \PhpExtended\UserAgent\UserstackComApiUserAgent
MIT (See license file).