Coder Social home page Coder Social logo

instagrambundle's Introduction

OhInstagramBundle

Uses Instaphp by sesser as a Symfony2 service. Adapted to use Instaphp v2 as a dependency.

Installation

Install this bundle as usual by adding to composer.json:

"ollieltd/instagram-bundle": "dev-master"

After installing above module you need to update your composer

composer update

Register the bundle in app/AppKernel.php:

// app/AppKernel.php
public function registerBundles()
{
    return [
        // ...
        new Oh\InstagramBundle\OhInstagramBundle(),
    ];
}

Add the following to app/config/config.yml:

imports:
    - { resource: "@OhInstagramBundle/Resources/config/services.yml" }

oh_instagram:
    instaphp:
        config:
            client_id: %instagram_api_client_id%
            client_secret: %instagram_api_client_secret%
            access_token: %instagram_api_access_token% # (optional)

And add these parameters:

instagram_api_client_id: YOUR_API_ID
instagram_api_client_secret: YOUR_API_SECRET
instagram_api_access_token: YOUR_API_ACCESS_TOKEN # (optional)

Most of the Instaphp configuration keys can be set in oh_instagram.instaphp.config. See Configuring Instaphp

And if you're OK with the provided routes, add these to app/config/routing.yml:

OhInstagramBundle:
    resource: "@OhInstagramBundle/Resources/config/routing.yml"
    prefix:   /

Usage (Controller)

$query = "snoopdogg";
	
/**
 * @var InstaphpAdapter
 */
$api = $this->get('instaphp');

$userId = $api->Users->FindId($query);
$media = $api->Users->Recent($userId);

You can also test if a user is logged in:

//is a user logged in?
$loggedIn = $this->get('instaphp_token_handler')->isLoggedIn();

Usage (Twig)

You should set up your Instagram API account to callback to the OhInstagramBundle_callback route, which you can set yourself, or use the one provided which is http://yourserver.com/instaphp/callback.

For quick testing purposes you can add this to your routing:

OhInstagramBundle_check:
    path: /checkInstagram
    defaults: { _controller: OhInstagramBundle:Instagram:instagramLoginStatus }

Then navigate to /checkInstagram to try out the login button.

There's a login button included in the views. Just implement this line in your Twig template:

{{ render(controller('OhInstagramBundle:Instagram:instagramLoginStatus')) }}

Instagram Auth Token

There are 2 TokenHandlers included:

CookieToken

The Instagram auth code is stored in a cookie

services:
    instaphp_token_handler:
        class: Oh\InstagramBundle\TokenHandler\CookieToken

UserToken

The Instagram auth code is stored in the User Entity. The methods setInstagramAuthCode() and getInstagramAuthCode() must be implemented on your User. When the login call is returned from Instagram, the code is set and the user is persisted and flushed in the Handler. There is an interface which is recommended that you use on your entity: Oh\InstagramBundle\TokenHandler\UserTokenInterface

services:
    instaphp_token_handler:
        class: Oh\InstagramBundle\TokenHandler\UserToken
            arguments: ["@security.context", "@doctrine.orm.default_entity_manager"]

Both

This will look to see if the user can be retrieved from the context and if it can't it will store the auth code in a cookie.

services:
    instaphp_user_token_handler:
        class: Oh\InstagramBundle\TokenHandler\UserToken
        arguments: ["@security.context", "@doctrine.orm.default_entity_manager"]
    instaphp_cookie_token_handler:
        class: Oh\InstagramBundle\TokenHandler\CookieToken
    instaphp_token_handler:
        class: Oh\InstagramBundle\TokenHandler\TokenManager
        arguments: ["@instaphp_user_token_handler", "@instaphp_cookie_token_handler"]

You can also implement your own TokenHandlerInterface to store the auth code somewhere else, for example in the session.

Tests

@todo

Credits

  • Ollie Harridge (ollietb) as the author.
  • Randy (sesser) for writing Instaphp

instagrambundle's People

Contributors

ollietb avatar rmasters avatar stephen-crowdreactive avatar bakl avatar nouchka avatar ramireddy558 avatar satellitecam avatar bulgakows avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.