Mule OAuth提供程序Accesstoken到期时间

Mule OAuth提供程序Accesstoken到期时间,oauth,mule,Oauth,Mule,我正在使用Mule enterprise edition,并努力寻找使用Mule OAuth提供程序发行的代币的默认到期时间。因此,如果我的提供者配置如下所示,那么发出的访问令牌的有效期是多久?12小时/24小时还是别的什么 <oauth2-provider:config name="oauth2-provider" providerName="E2 Provider" resourceOwnerSecurityProvider-ref="boston-security-provi

我正在使用Mule enterprise edition,并努力寻找使用Mule OAuth提供程序发行的代币的默认到期时间。因此,如果我的提供者配置如下所示,那么发出的访问令牌的有效期是多久?12小时/24小时还是别的什么

<oauth2-provider:config name="oauth2-provider"
    providerName="E2 Provider" resourceOwnerSecurityProvider-ref="boston-security-provider"
    scopes="READ WRITE" supportedGrantTypes="RESOURCE_OWNER_PASSWORD_CREDENTIALS"
    doc:name="OAuth provider module" port="${auth.port}" enableRefreshToken="true">
    <oauth2-provider:clients>           
      <oauth2-provider:client clientId="${web_client_id}"
            secret="${web_client_secret}" type="CONFIDENTIAL" clientName="Web Client"
            description="Mobile Client desc">
            <oauth2-provider:authorized-grant-types>
                <oauth2-provider:authorized-grant-type>PASSWORD</oauth2-provider:authorized-grant-type>
                <oauth2-provider:authorized-grant-type>REFRESH_TOKEN</oauth2-provider:authorized-grant-type>
            </oauth2-provider:authorized-grant-types>
            <oauth2-provider:scopes>
                <oauth2-provider:scope>READ</oauth2-provider:scope>
                <oauth2-provider:scope>WRITE</oauth2-provider:scope>
            </oauth2-provider:scopes>
        </oauth2-provider:client>
    </oauth2-provider:clients>
</oauth2-provider:config>

暗语
刷新令牌
阅读
写

我找到了答案,是86400秒,也就是24小时。指向文档的链接是,但是标记Ttl秒的描述有误导性,它应该是秒而不是毫秒。我已经记录了一个jira的相同