File: /storage/v6964/avoxlive/public_html/application/libraries/SEOstats/Config/ApiKeys.php
<?php
namespace SEOstats\Config;
/**
* Configuration constants for the SEOstats library.
*
* @package SEOstats
* @author Stephan Schmitz <eyecatchup@gmail.com>
* @copyright Copyright (c) 2010 - present Stephan Schmitz
* @license http://eyecatchup.mit-license.org/ MIT License
* @updated 2013/12/11
*/
/**
* Client API keys
* @package SEOstats
*/
interface ApiKeys
{
// To acquire an API key, visit Google's APIs Console here:
// https://code.google.com/apis/console
// In the Services pane, activate the "PageSpeed Insights API" (not the service!).
// Next, go to the API Access pane. The API key is near the bottom of that pane,
// in the section titled "Simple API Access.".
const GOOGLE_SIMPLE_API_ACCESS_KEY = '';
// To acquire a Mozscape (f.k.a. SEOmoz) API key, visit:
// https://moz.com/products/api/keys
const MOZSCAPE_ACCESS_ID = '';
const MOZSCAPE_SECRET_KEY = '';
// To acquire a SISTRIX API key, visit:
// http://www.sistrix.de
const SISTRIX_API_ACCESS_KEY = '';
}