PluginProbe
Authorizer / 2.8.2
Authorizer v2.8.2
3.15.3 3.15.2 3.15.1 3.15.0 3.14.3 3.14.4 3.14.2 3.14.1 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.2 2.9.3 2.9.6 All 126 releases
authorizer / vendor / google-api-php-client / examples / index.php

index.php in Authorizer 2.8.2, at vendor/google-api-php-client/examples/index.php

20 lines 940 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 include_once "templates/base.php";
3 if (!isWebRequest()) {
4 echo "To view this page on a webserver using PHP 5.4 or above run: \n\t
5 php -S localhost:8080\n";
6 exit();
7 }
8 echo pageHeader("PHP Library Examples"); ?>
9 <ul>
10 <li><a href="simple-query.php">A query using simple API access</a></li>
11 <li><a href="user-example.php">A query for user data, using OAuth 2.0 authentication.</a></li>
12 <li><a href="batch.php">An example of combining multiple calls into a batch request</a></li>
13 <li><a href="service-account.php">A query using the service account functionality.</a></li>
14 <li><a href="simplefileupload.php">An example of a small file upload.</a></li>
15 <li><a href="fileupload.php">An example of a large file upload.</a></li>
16 <li><a href="idtoken.php">An example of verifying and retrieving the id token.</a></li>
17 <li><a href="multi-api.php">An example of using multiple APIs.</a></li>
18 </ul>
19 <?php echo pageFooter();
20