autowp/oauth2-vk

为PHP League OAuth2-Client提供的VK OAuth 2.0客户端提供者

1.0.2 2016-06-22 09:25 UTC

This package is auto-updated.

Last update: 2024-09-25 07:06:37 UTC


README

Build Status Code Climate

VK OAuth 2.0客户端提供者

此包为PHP League的OAuth 2.0客户端提供了VK OAuth 2.0支持。

此包符合PSR-1PSR-2PSR-4规范。如果您发现合规性问题,请通过pull request发送补丁。

要求

以下版本的PHP受支持。

  • PHP 5.5
  • PHP 5.6
  • PHP 7.0
  • HHVM

安装

要安装,请使用composer

composer require autowp/oauth2-vk

用法

授权码流

$provider = new Autowp\OAuth2\Client\Provider\Vk([
    'clientId'      => '{vk-app-id}',
    'clientSecret'  => '{vk-app-secret}',
    'redirectUri'   => 'https://example.com/callback-url',
    'display'       => 'page',
    'response_type' => 'code'
]);

if (!empty($_GET['error'])) {

    // Got an error, probably user denied access
    exit('Got error: ' . $_GET['error']);

} elseif (empty($_GET['code'])) {

    // If we don't have an authorization code then get one
    $authUrl = $provider->getAuthorizationUrl();
    $_SESSION['oauth2state'] = $provider->getState();
    header('Location: ' . $authUrl);
    exit;

} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {

    // State is invalid, possible CSRF attack in progress
    unset($_SESSION['oauth2state']);
    exit('Invalid state');

} else {

    // Try to get an access token (using the authorization code grant)
    $token = $provider->getAccessToken('authorization_code', [
        'code' => $_GET['code']
    ]);

    // Optional: Now you have a token you can look up a users profile data
    try {

        // We got an access token, let's now get the owner details
        $ownerDetails = $provider->getResourceOwner($token);

        // Use these details to create a new profile
        printf('Hello %s!', $ownerDetails->getFirstName());

    } catch (Exception $e) {

        // Failed to get user details
        exit('Something went wrong: ' . $e->getMessage());

    }

    // Use this to interact with an API on the users behalf
    echo $token->accessToken;

    // Use this to get a new access token if the old one expires
    echo $token->refreshToken;

    // Number of seconds until the access token will expire, and need refreshing
    echo $token->expires;
}

许可证

MIT许可证(MIT)。有关更多信息,请参阅许可证文件