简体   繁体   中英

spring security oauth2 hasScope xml method security upgrade to what?

As spring-security-oauth2 obsoleted ref: EOL for Spring Security OAuth ,
cannot use #oauth2.hasScope([scope]) in xml config provided by OAuth2SecurityExpressionMethods.java

Expected to see ast parser or similar handler in either spring-security-oauth2-jose , spring-security-oauth2-client , spring-security-oauth2-core to accomplish that in the following example, #oauth2 security expressions on method level .

Is there something i missed for xml config for oauth2 scope checking?
Or i must implement it by hasAuthority('SCOPE_[scope]')

thanks

have to switch to hasAuthority("SCOPE_scope")
Spring Security converts scopes that follow the granted authority naming convention
ref: OAuth 2.0 Migration Guide

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM