Test your Accelerated Mobile Pages right away from your terminal.
This package uses CLOUDFARE's AMP validator API.
composer global require jeffochoa/amp-validator
First, download the binary using wget
:
wget https://github.com/jeffochoa/amp-validator/blob/master/builds/amp-validator -O amp-validator
Change binary permissions:
sudo chmod ax amp-validator
Move to bin directory:
sudo mv amp-validator /usr/local/bin/amp-validator
amp-validator
The given URL should be publicly accessible.
amp-validator validate http://website.test/valid-amp-link
You can use the generated CSV report by Google Webmaster Tools (GWT) as input to validate locally.
Go to https://www.google.com/webmasters/tools/accelerated-mobile-pages
Download the AMP report in Search Appearance / Accelerate mobile pages
Once you have the file downloaded locally:
amp-validator validate-batch path-to-file/downloaded.csv
This tool will read the CSV file generated on GWT to run the validation on each tests contained in the file, then you can select between the different types of output formats to export your report.
Please select an output format
----------------------------------------------------------------------------------
● Export to CSV file
○ In console (summarized)
○ In console (extended)
○ Cancel
The following example is the output generated using the "In console (extended)" option:
-----------------------------------------------------------------------------------
| Key | Value |
-----------------------------------------------------------------------------------
| link | https://you-given-url.test |
| error | The attribute 'target' in tag 'a' is set to the invalid value 'blank'. |
| line | 1221 |
| col | 3 |
| code | INVALID_ATTR_VALUE |
| help | https://www.ampproject.org/docs/reference/spec#links |
| preview | https://search.google.com/test/amp?url=https://you-given-url.test |
------------------------------------------------------------------------------------
If you click on the preview
link, you'll be taken to the online google validation tool.
AMP Validator is an open-sourced software licensed under the MIT license.