Mine is a simple implementation, that I haven't changed in a long time.
`<FacebookLogin
appId={AuthFields.FB_APP_ID}
callback={result => this.createSocialUserFromFacebook(result)}
fields="name,email,picture"
render={renderProps => (
)}
/>`
Since a few hours I am facing, and I am getting report of, "Blocked URL" error. This refers to the redirect url. As I mentioned the button have worked since first implementation, and all of the domains that the button is in (dev and prod) are in the Facebook dev console. It looks like something have broken, perhaps new APIs?
Mine is a simple implementation, that I haven't changed in a long time. `<FacebookLogin appId={AuthFields.FB_APP_ID} callback={result => this.createSocialUserFromFacebook(result)} fields="name,email,picture" render={renderProps => (
Since a few hours I am facing, and I am getting report of, "Blocked URL" error. This refers to the redirect url. As I mentioned the button have worked since first implementation, and all of the domains that the button is in (dev and prod) are in the Facebook dev console. It looks like something have broken, perhaps new APIs?