resource_ids字段是什么?

时间:2017-09-10 21:20:11

标签: spring spring-mvc spring-boot spring-security oauth

spring-security-oauth schema有一个表:

    create table oauth_client_details (
      client_id VARCHAR(256) PRIMARY KEY,
      resource_ids VARCHAR(256),
      client_secret VARCHAR(256),
      scope VARCHAR(256),
      authorized_grant_types VARCHAR(256),
      web_server_redirect_uri VARCHAR(256),
      authorities VARCHAR(256),
      access_token_validity INTEGER,
      refresh_token_validity INTEGER,
      additional_information VARCHAR(4096),
      autoapprove VARCHAR(256)
    );

resource_ids列是什么?有一个related question here但是从答案中不清楚resource_ids是否执行与范围相同的功能?

1 个答案:

答案 0 :(得分:1)

根据developer guide

resource_id:资源的ID(可选,但建议使用,并且将由身份验证服务器进行验证)