现在,我用的是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'
}
};
我应该如何改变它?谢谢。