ssx/php-google-pagespeed-api

PHP Google PageSpeed API Micro Client.

1.0.2 2017-06-13 19:55 UTC

This package is not auto-updated.

Last update: 2024-04-28 01:10:40 UTC


README

Circle CI StyleCI

PHP Google PageSpeed API

This is a tiny micro client for making calls to the Google Pagespeed API which returns some interesting data about the given URL.

To get started, create an instance like so:

$insights = new SSX\API\Google\PageSpeed\ApiClient("https://dor.ky");

This will give you an instance of the class. The two implemented functions so far are $insights->getScreenshot() to return a JPG image of the site and $insights->getRaw() which will return the raw data back from the API call.

Use an API Key

I'd recommend you setup and use an API key for use in production, you can add it as the second parameter on construction to use:

$insights = new SSX\API\Google\PageSpeed\ApiClient("https://dor.ky","api-key-goes-here");

License

This project is licensed under an Apache 2.0 license which you can find within this repository in the LICENSE file.

Feedback

If you have any feedback, comments or suggestions, please feel free to open an issue within the repository on Github.