Php Symfony2 OAuth客户端

Php Symfony2 OAuth客户端,php,symfony,oauth,Php,Symfony,Oauth,我正在尝试将这个oauth客户端库“adoy/oauth2”添加到symfony,以连接我的oauth2启用API。这就是我到目前为止所做的 1) composer.json 2) AuthController.php //src/Test/WebBundle/Controller/AuthController.php 名称空间测试\WebBundle\Controller use Symfony\Bundle\FrameworkBundle\Controller\Controller; use

我正在尝试将这个oauth客户端库“adoy/oauth2”添加到symfony,以连接我的oauth2启用API。这就是我到目前为止所做的

1) composer.json

2) AuthController.php

//src/Test/WebBundle/Controller/AuthController.php 名称空间测试\WebBundle\Controller

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;

// these import the "@Route" and "@Template" annotations
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;

use OAuth2;


class AuthController extends Controller
{
    /**
     * @Route("/authorize", name="auth")
     */
    public function authAction(Request $request)
    {
        $authorizeClient = $this->container->get('test_web.authorize_client');

        if (!$request->query->get('code')) {
            return new RedirectResponse($authorizeClient->getAuthenticationUrl());
        }

        $authorizeClient->getAccessToken($request->query->get('code'));

        return new Response($authorizeClient->fetch('https://api.test.me/me'));
    }
}
3) OAuth2Client.php

// src/Test/WebBundle/Service/OAuth2Client.php
namespace Test\WebBundle\Service;

use OAuth2;

class OAuth2Client
{
    protected $client;
    protected $authEndpoint;
    protected $tokenEndpoint;
    protected $redirectUrl;
    protected $grant;
    protected $params;

    public function __construct(OAuth2\Client $client, $authEndpoint, $tokenEndpoint, $redirectUrl, $grant, $params)
    {
        $this->client = $client;
        $this->authEndpoint = $authEndpoint;
        $this->tokenEndpoint = $tokenEndpoint;
        $this->redirectUrl = $redirectUrl;
        $this->grant = $grant;
        $this->params = $params;
    }

    public function getAuthenticationUrl() {
        return $this->client->getAuthenticationUrl($this->authEndpoint, $this->redirectUrl);
    }

    public function getAccessToken($code = null)
    {
        if ($code !== null) {
            $this->params['code'] = $code;
        }

        $response = $this->client->getAccessToken($this->tokenEndpoint, $this->grant, $this->params);
        if(isset($response['result']) && isset($response['result']['access_token'])) {
            $accessToken = $response['result']['access_token'];
            $this->client->setAccessToken($accessToken);
            return $accessToken;
        }

        throw new OAuth2\Exception(sprintf('Unable to obtain Access Token. Response from the Server: %s ', var_export($response)));
    }

    public function fetch($url)
    {
        return $this->client->fetch($url);
    }
}
4) CredentialsCommand.php

// src/Test/WebBundle/Command/CredentialsCommand.php
namespace Test\WebBundle\Command;

use OAuth2;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

class CredentialsCommand extends ContainerAwareCommand
{
    protected function configure()
    {
        $this
            ->setName('oauth2:credentials')
            ->setDescription('Executes OAuth2 Credentials grant');
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $credentialsClient = $this->getContainer()->get('test_web.credentials_client');
        $accessToken = $credentialsClient->getAccessToken();
        $output->writeln(sprintf('Obtained Access Token: <info>%s</info>', $accessToken));

        $url = 'http://oauth-server.local/api/articles';
        $output->writeln(sprintf('Requesting: <info>%s</info>', $url));
        $response = $credentialsClient->fetch($url);
        $output->writeln(sprintf('Response: <info>%s</info>', var_export($response, true)));
    }
}
错误:

ContextErrorException:可捕获的致命错误:传递给Test\WebBundle\Service\OAuth2Client:的参数1::\uu construct()必须是OAuth2\Client的实例,给定字符串,在第1460行的C:\wamp\www\myproj\app\cache\web\u dev\appWeb\u devDebugProjectContainer.php中调用,并在C:\wamp\www\myproj\src\Test\WebBundle\Service\OAuth2Client.php第16行中定义


在尝试了几次调整服务后,我现在完全不知道该怎么办。yml?请帮助..

目前Symfony2无法使用
%parameter%
语法在服务参数中指定服务id。在YAML配置中,您应该对服务参数使用
@service\u id
语法

// src/Test/WebBundle/Command/CredentialsCommand.php
namespace Test\WebBundle\Command;

use OAuth2;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

class CredentialsCommand extends ContainerAwareCommand
{
    protected function configure()
    {
        $this
            ->setName('oauth2:credentials')
            ->setDescription('Executes OAuth2 Credentials grant');
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $credentialsClient = $this->getContainer()->get('test_web.credentials_client');
        $accessToken = $credentialsClient->getAccessToken();
        $output->writeln(sprintf('Obtained Access Token: <info>%s</info>', $accessToken));

        $url = 'http://oauth-server.local/api/articles';
        $output->writeln(sprintf('Requesting: <info>%s</info>', $url));
        $response = $credentialsClient->fetch($url);
        $output->writeln(sprintf('Response: <info>%s</info>', var_export($response, true)));
    }
}
parameters:
    adoy_oauth2.client.class: OAuth2\Client
    test_web.class: Test\WebBundle\Service\OAuth2Client

services:
    adoy_oauth2.client:
        class: %adoy_oauth2.client.class%
        arguments : [%oauth2_client_id%, %oauth2_client_secret%]
    test_web.credentials_client:
        class: %test_web.class%
        arguments : [%adoy_oauth2.client.class%, %oauth2_auth_endpoint%, %oauth2_token_endpoint%, %oauth2_redirect_url%, 'client_credentials', {client_id:%oauth2_client_id%},{client_secret:%oauth2_client_secret%}]
    test_web.authorize_client:
        class: %test_web.class%
        arguments : [adoy_oauth2.client, %oauth2_auth_endpoint%, %oauth2_token_endpoint%, %oauth2_redirect_url%, 'authorization_code', {redirect_uri:%oauth2_redirect_url%}]