hametuha / gapiwp
Google API Library wrapper for WordPress.
Installs: 1 268
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: >=5.3
- google/apiclient: 1.1.*
This package is auto-updated.
Last update: 2024-11-09 19:02:27 UTC
README
Google API Library wrapper for WordPress.
How to use
Install
Install this libary in your theme or plugin via Composer.
To do so, you need write commposer.json
like below.
{ "name": "your-name/your-theme", "description": "WordPress theme", "require": { "hametuha/gapiwp": "1.0.x" } }
Now you can execute composer install
. Google API Client is a bit bigger library, --no-dev
option is recommended.
composer install --no-dev
Load library
In your entry point( theme's functions.php or plugin's base file), initialize library.
// Load auto loader. include __DIR__.'/vendor/autoload.php'; // Initialize library \Hametuha\GapiWP\Loader::load();
Googla Analytics
Currently, only Google Analytics API is supported. You can now easily contact with Google Analytics data.
After initliazing the library, you can see setting screen on admin panel. Go to Setting > Analytics Setting.
What you should enter is...
- Client ID
- Client secret
You can get them on Google Developers console. Besides that, you have to save your admin screen URL(e.g. http://local.sample.in/wp-admin//options-general.php?page=gapiwp-analytics
) as redirect URI. It will be treated as white-listed.
// Get Google Analytics client. $ga = \Hametuha\GapiWP\Loader::analytics(); // Get top 100 pave views of this year. $result = $ga->fetch('2015-01-01', date_i18n('Y-m-d'), 'ga:pageviews', array( 'max-results' => 100, 'dimensions' => 'ga:pagePath', 'sort' => '-ga:pageviews' )); // See what is retrieved. var_dump($result); exit;
Lisence
Released under MIT lisence. See LISENCE.md.