Testing your Client
8 | 9 |Coming soon...
10 | 11 |├── public ├── assets │ ├── common.js │ ├── indieauth-rocks.png │ ├── indieauth-rocks-icon.png │ ├── style.css │ └── jquery-3.6.0.min.js ├── index.php └── identities.php ├── .gitignore ├── resources ├── IndieAuth-Rocks-Logo.ai └── IndieAuth-Rocks-Star.ai ├── CONTRIBUTING.md ├── README.md ├── views ├── client │ └── index.php ├── server │ └── index.php ├── layout.php └── index.php ├── composer.json ├── lib ├── config.template.php └── helpers.php ├── app └── Controller.php ├── LICENSE └── composer.lock /public/assets/common.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | lib/config.php 3 | vendor/ 4 | -------------------------------------------------------------------------------- /public/assets/indieauth-rocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/indieauth.rocks/main/public/assets/indieauth-rocks.png -------------------------------------------------------------------------------- /resources/IndieAuth-Rocks-Logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/indieauth.rocks/main/resources/IndieAuth-Rocks-Logo.ai -------------------------------------------------------------------------------- /resources/IndieAuth-Rocks-Star.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/indieauth.rocks/main/resources/IndieAuth-Rocks-Star.ai -------------------------------------------------------------------------------- /public/assets/indieauth-rocks-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronpk/indieauth.rocks/main/public/assets/indieauth-rocks-icon.png -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | By contributing to this project, you agree to irrevocably release your contributions under the same license as this project. See README.md for more details. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | IndieAuth 2 | ========= 3 | 4 | In progress. 5 | 6 | IndieAuth test suite and test identities. 7 | 8 | 9 | 10 | License 11 | ------- 12 | 13 | Copyright 2019 by Aaron parecki. 14 | 15 | Available under the Apache 2.0 license. 16 | 17 | -------------------------------------------------------------------------------- /views/client/index.php: -------------------------------------------------------------------------------- 1 | layout('layout', [ 2 | 'title' => $title, 3 | ]); ?> 4 | 5 |
Coming soon...
10 | 11 |Coming soon...
10 | 11 |
IndieAuth Rocks! is a validator to help you test your IndieAuth client and server implementations. Several kinds of tests are available on the site.
9 |These tests will help you build an IndieAuth server by providing many different types of IndieAuth clients you may encounter in the wild.
41 | 42 |These tests will help you build an IndieAuth client by making sure you are able to handle all types of IndieAuth servers you may encounter in the wild.
44 | 45 |This code is open source. Feel free to file an issue if you notice any errors.
50 |