Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
aa34d312
Commit
aa34d312
authored
May 09, 2014
by
Paul Klimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VKontakte OAuth support added
parent
02d890d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
106 additions
and
1 deletion
+106
-1
CHANGELOG.md
extensions/authclient/CHANGELOG.md
+1
-1
VKontakte.php
extensions/authclient/clients/VKontakte.php
+105
-0
No files found.
extensions/authclient/CHANGELOG.md
View file @
aa34d312
...
...
@@ -4,7 +4,7 @@ Yii Framework 2 authclient extension Change Log
2.
0.0-rc under development
--------------------------
-
no changes in this release.
-
Enh #3416: VKontakte OAuth support added (klimov-paul)
2.0.0-beta April 13, 2014
...
...
extensions/authclient/clients/VKontakte.php
0 → 100644
View file @
aa34d312
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\authclient\clients
;
use
yii\authclient\OAuth2
;
/**
* VKontakte allows authentication via VKontakte OAuth.
*
* In order to use VKontakte OAuth you must register your application at <http://vk.com/apps.php?act=add&site=1>.
*
* Example application configuration:
*
* ~~~
* 'components' => [
* 'authClientCollection' => [
* 'class' => 'yii\authclient\Collection',
* 'clients' => [
* 'google' => [
* 'class' => 'yii\authclient\clients\VKontakte',
* 'clientId' => 'vkontakte_client_id',
* 'clientSecret' => 'vkontakte_client_secret',
* ],
* ],
* ]
* ...
* ]
* ~~~
*
* @see http://vk.com/apps.php?act=add&site=1
* @see http://vk.com/developers.php?oid=-1&p=users.get
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
*/
class
VKontakte
extends
OAuth2
{
/**
* @inheritdoc
*/
public
$authUrl
=
'http://api.vk.com/oauth/authorize'
;
/**
* @inheritdoc
*/
public
$tokenUrl
=
'https://api.vk.com/oauth/access_token'
;
/**
* @inheritdoc
*/
public
$apiBaseUrl
=
'https://api.vk.com/method'
;
/**
* @inheritdoc
*/
protected
function
initUserAttributes
()
{
$attributes
=
$this
->
api
(
'users.get.json'
,
'GET'
,
[
'fields'
=>
implode
(
','
,
[
'uid'
,
'first_name'
,
'last_name'
,
'nickname'
,
'screen_name'
,
'sex'
,
'bdate'
,
'city'
,
'country'
,
'timezone'
,
'photo'
]),
]);
return
$attributes
;
}
/**
* @inheritdoc
*/
protected
function
apiInternal
(
$accessToken
,
$url
,
$method
,
array
$params
)
{
$params
[
'uids'
]
=
$accessToken
->
getParam
(
'user_id'
);
$params
[
'access_token'
]
=
$accessToken
->
getToken
();
return
$this
->
sendRequest
(
$method
,
$url
,
$params
);
}
/**
* @inheritdoc
*/
protected
function
defaultName
()
{
return
'vkontakte'
;
}
/**
* @inheritdoc
*/
protected
function
defaultTitle
()
{
return
'VKontakte'
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment