I have a Horizon/React webapp which has a facebook login.
The login worked great till yesterday, when it just started to go to facebook page without redirecting back to my app.
The url that I saw look like:
What is strange is that access_denied and user_denied parts.
I did not denied the app in my login page. It just stopped working.
Any ideas how it can be fixed?
The login works on Firefox but not on Chrome or Safari.
--
--
Chromium Discussion mailing list: chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss
---
You received this message because you are subscribed to the Google Groups "Chromium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discu...@chromium.org.
var Content = React.createClass({
facebook_login: function() {
this.props.data.horizon.authEndpoint('facebook').subscribe((endpoint) => {
window.location.pathname = endpoint;
});
},
google_login: function() {
this.props.data.horizon.authEndpoint('google').subscribe((endpoint) => {
window.location.pathname = endpoint;
});
},
render: function() {
return (
...
<Link className="google_signin button" to="#" onClick={this.google_login}>
<i className="fa fa-google"/>
Sign in with Google
</Link>
<Link className="facebook_signin button" to="#" onClick={this.facebook_login}>
<i className="fa fa-facebook"/>
Sign in with Facebook
</Link>
... )
}
});