-
I'm trying to setup a PromiseProxy Service that returns an Ember Data model, but the result doesn't seem to set the content property.My service looks like this:import Ember from 'ember';const { ......
-
Hey guys I am trying out emberjs and want to integrate goJS to it. I did an npm install of the package https://www.npmjs.com/package/gojsBut I can't find any good documentation on this.. so if anyone ......
-
I am quite new to ember and was trying to build a small to-do list app when I started facing a problem wherein I tried installing moment package through bower install moment but somehow importing the ......
-
I am using emberjs and i could get this response from https://www.googleapis.com/oauth2/v4/token{ "access_token": "snip", "token_type": "Bearer", "expires_in": 3600, "id_token": "snip"}but i ......
-
I am using ember-simple-auth & ember-simple-auth-token to maintain session on Ember. I do not want to use the refresh-token approach, instead would like to receive a new jwt token in the response ......
-
I just installed ember-simple-auth (version 1.3.0) in my application. Before insalling addon, the application is working fine but after installing it throws the following error:Uncaught TypeError: (......
-
I'm trying to learn authentication for a web app that I'm writing. All I want is a login and password, and to make sure the user can't write/edit each others posts unless they are logged in.I'm not ......
-
I create a app thet need to implement authentification with email/password on all pages except one page (mobile_messages), where need to authenticate with refresh token. I extend from JWT ......
-
Hi I want to get name and email from facebook authentication via torii and simple-auth, but I don't know how recovery this data. I can login via facebook but I can't get name or email. Could you ......
-
I am using Ember and Ember-simple-auth. This question is to clear my confusion related to cookies etc.I have configured ember storage to Cookie.My server is sending a cookie to be saved at client ......
-
I'm using AuthenticatedRouteMixin and ApplicationRouteMixin from ember-simple-auth with ember-simple-auth-token to provide a TokenAuthorizerMixin with authenticator:jwt for my app. They both use a ......
-
I'm using JWT authentication, using ember-simple-auth for implementing user authentication. I m providing necessary details in my project below.When Authenticated correctly a jwt token is passing ......
-
This question is related to: Does Ember Octane Route class support using mixins? Mixins are officially deprecated in Ember Octane. Question:What is the best option to replace Ember mixins with and ......
-
We have our own Ember to Api login working, using ember-simple-auth, and jwt. In addition, we also want to connect to Facebook and additional third party social networks.We are able to connect and ......
-
In my implementation below I try get the token from ember-simple-auth-token and use with a URL, used to connect with ActionCable: ...export default Route.extend({ store: service(), currentUser:......