Beispiel #1
0
function missingServiceAccountDetailsWarning()
{
    $ret = "";
    if (isWebRequest()) {
        $ret = "\n      <h3 class='warn'>\n        Warning: You need to set Client ID, Email address and the location of the Key from the\n        <a href='http://developers.google.com/console'>Google API console</a>\n      </h3>";
    } else {
        $ret = "Warning: You need to set Client ID, Email address and the location of the Key from the";
        $ret .= "Google API console:\nhttp://developers.google.com/console";
    }
    return $ret;
}
function missingClientSecretsWarning()
{
    $ret = "";
    if (isWebRequest()) {
        $ret = "\n      <h3 class='warn'>\n        Warning: You need to set Client ID, Client Secret and Redirect URI on\n        the client_secrets.json file. You can get these from the\n        <a href='http://developers.google.com/console'>Google API console</a>\n      </h3>";
    } else {
        $ret = "Warning: You need to set Client ID, Client Secret and Redirect URI";
        $ret .= " on the client_secrets.json file. You can get these from:\n";
        $ret .= "http://developers.google.com/console";
    }
    return $ret;
}
Beispiel #3
0
<?php

include_once "templates/base.php";
if (!isWebRequest()) {
    echo "To view this page on a webserver using PHP 5.4 or above run: \n\t\n    php -S localhost:8080\n";
    exit;
}
echo pageHeader("PHP Library Examples");
?>
<ul>
  <li><a href="simple-query.php">A query using simple API access</a></li>
  <li><a href="user-example.php">A query for user data, using OAuth 2.0 authentication.</a></li>
  <li><a href="batch.php">An example of combining multiple calls into a batch request</a></li>
  <li><a href="service-account.php">A query using the service account functionality.</a></li>
  <li><a href="simplefileupload.php">An example of a small file upload.</a></li>
  <li><a href="fileupload.php">An example of a large file upload.</a></li>
  <li><a href="idtoken.php">An example of verifying and retrieving the id token.</a></li>
  <li><a href="multi-api.php">An example of using multiple APIs.</a></li>
</ul>
<?php 
echo pageFooter();