我设置了render() {
return (
<div style={{ marginLeft: 20 }}>
<RaisedButton label="DISPLAY" onClick={this.displayComponent} />
</div>
}
和/oauth
个端点,并在客户端应用中启动了帐户关联。使用以下参数调用/token
端点:
/oauth
创建authcode并通过重定向响应:
{"response_type":"code","client_id":"<clientid>","redirect_uri":"https://oauth-redirect.googleusercontent.com/r/<myproject>", "state":"<state>"}
我希望调用/ token端点,但我得到一个GET请求:
https://oauth-redirect.googleusercontent.com/r/xxxxxx?code=<authcode>&state=<state>
出了什么问题?
答案 0 :(得分:0)
结果是我的反向代理的配置问题是重写重定向。我现在的行动很好。