Hello, I’m having some issues trying to use the Backendless google login with Electron.(https://electron.atom.io).
My problems range from
ReferenceError: document is not defined
when I’m passing in an iframe or any kind of dom component, or window remote
backend.UserService.loginWithGooglePlus(remember, authWindow).then(
function(result ){ console.log( result ); },
function(error ) { console.log( error ); });
ReferenceError: window is not defined
when I’m trying to use the most basic.
backend.UserService.loginWithGooglePlus(remember).then(
function(result ){ console.log( result ); },
function(error ) { console.log( error ); });
I’ve also had other errors information me that atom is not available either. I’m just not sure how to integrate backendless system into an electron app.