PHP Classes

File: examples/google.php

Recommend this page to a friend!
  Classes of Daniel   ohmy-auth   examples/google.php   Download  
File: examples/google.php
Role: Example script
Content type: text/plain
Description: Example script
Class: ohmy-auth
Obtain authorization to access APIs using OAuth
Author: By
Last change: Update of examples/google.php
Date: 2 months ago
Size: 1,071 bytes
 

Contents

Class file image Download
<?php require_once __DIR__ . '/../vendor/autoload.php';

/*
 * Copyright (c) 2014, Yahoo! Inc. All rights reserved.
 * Copyrights licensed under the New BSD License.
 * See the accompanying LICENSE file for terms.
 */

use ohmy\Auth2;

# initialize 3-legged oauth
$google = Auth2::legs(3)
               ->
set('id', 'your client id')
               ->
set('secret', 'your client secret')
               ->
set('redirect', 'your redirect uri')
               ->
set('scope', 'profile')

              
# oauth flow
              
->authorize('https://accounts.google.com/o/oauth2/auth')
               ->
access('https://accounts.google.com/o/oauth2/token')

              
# save access token
              
->finally(function($data) use(&$access_token) {
                  
$access_token = $data['access_token'];
               });

# test GET call
$google->GET("https://www.googleapis.com/plus/v1/people/me?access_token=$access_token")
       ->
then(function($response) {
           echo
'<pre>';
          
var_dump($response->text);
           echo
'</pre>';
       });