You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i tried to work with emberfire and embersimple auth, and followed the instruction, and it worked, but when i tried to use fastboot , it failed, it said " Error: The XMLHttpRequest compatibility library was not found.". I tried to use the guide from embersimple auth, by activated the cookie, yes it worked but the session failed to capture the login from firebase probably due i changed the session-stores to follow the guides from ember-simple-auth website, any idea to work around this problem?
thanks
The text was updated successfully, but these errors were encountered:
Same issue. I gave up using emberfire. Instead I did this workaround.
Installed the package npm install xmlhttprequest --save. It'll likely save 'ember-fetch' in your package.json but xmlhttprequest is a dependency of it.
Added xmlhttprequest to fastbootdependencies in package.json
Added firebase as a global to my .eslintrc.js file so I don't get any errors compiling.
globals: {firebase: "readonly"},
Done. I was able to console.log(firebase.auth()) from my Ember Service without the XMLHttpRequest error and I saw the output in both my terminal and the browser.
i tried to work with emberfire and embersimple auth, and followed the instruction, and it worked, but when i tried to use fastboot , it failed, it said " Error: The XMLHttpRequest compatibility library was not found.". I tried to use the guide from embersimple auth, by activated the cookie, yes it worked but the session failed to capture the login from firebase probably due i changed the session-stores to follow the guides from ember-simple-auth website, any idea to work around this problem?
thanks
The text was updated successfully, but these errors were encountered: