当使用这样的URL(客户端凭证作为授权类型)要求访问令牌时:
http://api.local/app_dev.php/oauth/v2/token?client_id=<client_id>&client_secret=<secret>&grant_type=client_credentials
我得到以下json回复:
{
access_token: "XXXXXXXXXXX",
expires_in: 3600,
token_type: "bearer",
scope: "user"
}
缺少刷新令牌,不知道为什么会这样?
我在config.yml中的FOSOAuthServerBundle:
fos_oauth_server:
db_driver: orm
client_class: Acme\ApiBundle\Entity\Client
access_token_class: Acme\ApiBundle\Entity\AccessToken
refresh_token_class: Acme\ApiBundle\Entity\RefreshToken
auth_code_class: Acme\ApiBundle\Entity\AuthCode
service:
user_provider: platform.user.provider
options:
supported_scopes: user
更新
客户端实体调用父实体中的构造函数(位于FOSOAuthServerBundle中):
namespace Acme\ApiBundle\Entity;
use FOS\OAuthServerBundle\Entity\Client as BaseClient;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class Client extends BaseClient
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
public function __construct()
{
parent::__construct();
}
}
答案 0 :(得分:2)
Florent是对的,client_credentials
默认情况下不应包含刷新令牌。但是,它包含在我正在使用的旧版本中,这就是我感到困惑的原因。
如果可能的话,我建议您申请资助类型authorization_code
或password
。如果你真的需要公开client_credentials
的刷新令牌,我想你可以扩展/覆盖OAuth2
类,并通过调用父项并删除grantAccessTokenClientCredentials
来覆盖方法'issue_refresh_token' => false
。 }从返回的结果。
您可以通过在services.yml中添加以下内容来覆盖OAuth2
(只要您的包中包含'FOSOAuthServerBundle'作为父级):
parameters:
fos_oauth_server.server.class: YourNS\YourBundle\Service\YourOauth2
答案 1 :(得分:2)
使用client_credentials
的刷新令牌问题是可选的(请参阅RFC6749#section-4.4.3):不应包含刷新令牌。。
这不是错误,而是此捆绑包的正常行为。