2

现在,我用的是React,然后我想用redux-oidc通过steam openid登录,但是效果不好……我觉得我的oidc客户端配置不好;

const config = {
    authority: 'http://steamcommunity.com/openid',
    client_id: 'myexamplesite.com',
    redirect_uri: 'myexamplesite.com/callback',
    response_type: 'code token',
    scope: 'openid',
    metadata: {
        authorization_endpoint: 'http://steamcommunity.com/openid'
    }
};

我应该如何改变它?谢谢。

4

1 回答 1

0

我必须使用另一个库,因为

  • 蒸汽:openid 2.0
  • redux-oidc:openid 连接
于 2016-08-28T10:11:44.693 回答