PHP Classes

File: examples/twitter.php

Recommend this page to a friend!
  Classes of Daniel   ohmy-auth   examples/twitter.php   Download  
File: examples/twitter.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/twitter.php
Date: 8 months ago
Size: 1,039 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\Auth1;

# initialize 3-legged oauth
$twitter = Auth1::legs(3)

               
# configuration
               
->set(array(
                   
'key' => 'your consumer key',
                   
'secret' => 'your consumer secret',
                   
'callback' => 'your callback url'
               
))

               
# oauth flow
               
->request('https://api.twitter.com/oauth/request_token')
                ->
authorize('https://api.twitter.com/oauth/authorize')
                ->
access('https://api.twitter.com/oauth/access_token');

# test GET call
$twitter->GET('https://api.twitter.com/1.1/statuses/home_timeline.json', array('count' => 5))
        ->
then(function($response) {
            echo
'<pre>';
           
var_dump($response->json());
            echo
'</pre>';
        });