Giter Site home page Giter Site logo

zf-vkontakte-sdk's Introduction

Examples

Constructor

<?php
// see: _misc/singleton.php

require_once 'Other/Vkontakte/Api.php';

$config = Zend_Registry::get('config')->vk;
$authUri = 'http://mysite.com/vk';

$api = new \Vkontakte\Api(
    $config->id, $config->key, $authUri,
    array('offline', 'notes', 'wall')
);

Auth

<?php
// the api object
$api = MyProject_Social_Vkontakte::getInstance();

// we haven't error, closing and forward
if (!$this->hasParam('error')) {
    if ($api->authorize($this->getParam('code'))) {
        // see: _misc/controller.php
    }
}

Controller

<?php
$api = MyProject_Social_Vkontakte::getInstance();

$attrs = array(
    'user_ids' => $api->getUid(),
    'fields' => 'country,city,contacts,notes'
);

// users.get
var_dump($api->usersGet($attrs));

// places.getCityById
var_dump($api->databaseGetCitiesById(array('city_ids' => 123)));

// notes.add
$response = $api->notesAdd(array(
    'title' => 'Buy milk',
    'text' => 'Otherwise she kills me :('
));

var_dump($response);

Method structure

@see: https://vk.com/dev/methods
$api->databaseGetCitiesById = database.getCitiesById
$api->authCheckPhone = auth.checkPhone
$api->usersGet = users.get
etc...

Template

<-- socialLogin class opens popup window -->
<a href="<?=$this->vk()->uri('/my/link')?>"<?=$this->vk()->uid() ? '' : ' class="socialLogin"'?>>Link</a>

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.