qq_16390375 2019-10-17 11:28 采纳率: 0%
浏览 5664

本地做的OAuth后台报错Handling error: InvalidGrantException, Invalid authorization code: Dyki6G

对接Alexa后台,enable 技能时需要通过我自己做的后台Oauth服务,经常会报错
Handling error: InvalidGrantException, Invalid authorization code: Dyki6G,
有人遇到类似这样的问题吗?还是我的浏览器配置有问题呢?
图片说明

  • 写回答

1条回答 默认 最新

  • Json-Huang 2019-10-17 12:11
    关注

    配置AuthorizationServerConfiguration认证节点使用JdbcAuthorizationCodeServices服务来存储和共享授权码通过数据库。

    @Configuration
    @EnableAuthorizationServer
    protected static class AuthorizationServerConfiguration extends AuthorizationServerConfigurerAdapter implements EnvironmentAware {
    
        @Inject
        private DataSource dataSource;
    
        @Bean
        public TokenStore tokenStore() {
            return new JdbcTokenStore(dataSource);
        }
    
        // JdbcAuthorizationCodeServices stores authentication codes in a database.
        @Bean
        public JdbcAuthorizationCodeServices jdbcAuthorizationCodeServices() {
            return new JdbcAuthorizationCodeServices(dataSource);
        }
    
        @Inject
        @Qualifier("authenticationManagerBean")
        private AuthenticationManager authenticationManager;
    
        @Override
        public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
            endpoints
                .tokenStore(tokenStore())
                .reuseRefreshTokens(false)
                .authenticationManager(authenticationManager)
                .authorizationCodeServices(jdbcAuthorizationCodeServices());
        }
    }
    

    创建oauth_code表

    CREATE TABLE oauth_code (
        code VARCHAR(256), authentication LONGVARBINARY
    );
    

    具体参考:https://stackoverflow.com/questions/35789741/invalidgrantexception-invalid-authorization-code-when-running-2-spring-oauth-se

    评论

报告相同问题?

悬赏问题

  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的