2017 © Pedro Peláez
 

symfony-bundle google-api-client-php-bundle

Symfony Google Api Client Bundle

image

samiaraboglu/google-api-client-php-bundle

Symfony Google Api Client Bundle

  • Tuesday, July 10, 2018
  • by samiaraboglu
  • Repository
  • 1 Watchers
  • 0 Stars
  • 283 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

google-api-client-php-bundle

Latest Stable Version Total Downloads License, (*1)

Use the Google APIs Client Library for PHP., (*2)

Download the Bundle

$ composer require samiaraboglu/google-api-client-php-bundle

Enable the Bundle

Registered bundles in the app/AppKernel.php file of your project:, (*3)

<?php
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Samiax\GoogleApiBundle\SamiaxGoogleApiBundle(),
        );
        // ...
    }
    // ...
}

Config

Add this to config.yml:, (*4)

samiax_google_api:
    credential_file:    "%kernel.root_dir%/config/google-api-client-php/client_credentials.json"
    application_name:   "APPLICATION_NAME"

Example 1 - Google Analytics

Get the session count from google analytics., (*5)

/**
 * @Route("/google/analytics", name="google_analytics")
 */
public function googleAnalyticsAction(Request $request)
{
    $service = $this->get('samiax_google_api.google_client');

    $googleClient = $service->getGoogleClient();
    $googleClient->setScopes(['https://www.googleapis.com/auth/analytics.readonly']);

    $analytics = $service->analytics();

    // Create the DateRange object.
    $dateRange = new \Google_Service_AnalyticsReporting_DateRange();
    $dateRange->setStartDate("1daysAgo");
    $dateRange->setEndDate("1daysAgo");

    // Create the Metrics object.
    $sessions = new \Google_Service_AnalyticsReporting_Metric();
    $sessions->setExpression("ga:sessions");
    $sessions->setAlias("sessions");

    // Create the ReportRequest object.
    $request = new \Google_Service_AnalyticsReporting_ReportRequest();
    $request->setViewId("{VIEW_ID}");
    $request->setDateRanges($dateRange);
    $request->setMetrics([$sessions]);

    $body = new \Google_Service_AnalyticsReporting_GetReportsRequest();
    $body->setReportRequests([$request]);

    echo $analytics->reports->batchGet($body)->getReports()[0]->getData()->getTotals()[0]->getValues()[0];

    return new Response();
}

Example 2 - Google Product Feed

Get the product feeds., (*6)

/**
 * @Route("/google/content/auth", name="google_content_auth")
 */
public function googleContentAuthAction(Request $request)
{
    $service = $this->get('samiax_google_api.google_client');

    $googleClient = $service->getGoogleClient();
    $googleClient->setRedirectUri($request->getSchemeAndHttpHost() . $request->getBaseUrl() . $request->getPathInfo());
    $googleClient->setScopes('https://www.googleapis.com/auth/content');

    if ($request->query->get('code')) {
        $googleClient->authenticate($request->query->get('code'));

        $session = $this->container->get('session');
        $session->set('google_content_access_token', $googleClient->getAccessToken());

        return $this->redirect(filter_var($this->generateUrl('google_content'), FILTER_SANITIZE_URL));
    }

    return $this->redirect($googleClient->createAuthUrl());
}

/**
 * @Route("/google/content", name="google_content")
 */
public function googleContentAction()
{
    $session = $this->container->get('session');

    $accessToken = $session->get('google_content_access_token');

    if (!$accessToken) {
        return $this->redirect($this->generateUrl('google_content_auth'));
    }

    $service = $this->get('samiax_google_api.google_client');

    $googleClient = $service->getGoogleClient();
    $googleClient->setAccessToken($accessToken);

    $shoppingContent = $service->shoppingContent();

    $products = $shoppingContent->products->listProducts({MERCHANT_ID});

    var_dump($products);

    return new Response();
}

The Versions

10/07 2018

dev-master

9999999-dev https://github.com/samiaraboglu/google-api-client-php-bundle

Symfony Google Api Client Bundle

  Sources   Download

MIT

The Requires

 

api symfony google symfony-bundle google-analytics google-api

10/07 2018

0.2.0

0.2.0.0 https://github.com/samiaraboglu/google-api-client-php-bundle

Symfony Google Api Client Bundle

  Sources   Download

MIT

The Requires

 

api symfony google symfony-bundle google-analytics google-api

09/07 2018

0.1.0

0.1.0.0 https://github.com/samiaraboglu/google-api-client-php-bundle

Symfony Google Api Client Bundle

  Sources   Download

MIT

The Requires

 

api symfony google symfony-bundle google-analytics google-api