Questions tagged [satellizer]

Satellizer is a simple to use, end-to-end, token-based authentication module for AngularJS with built-in support for Google, Facebook, LinkedIn, Twitter authentication providers.

Satellizer is a simple to use, end-to-end, token-based authentication module for AngularJS with built-in support for Google, Facebook, LinkedIn, Twitter authentication providers, plus Email and Password sign-in method. You are not limited to the sign-in options above, in fact you can add any OAuth 1.0 or OAuth 2.0 provider by passing provider-specific information during the configuration step.

147 questions
1
vote
1 answer

Keep getting "Bad request" with satellizer

I'm trying to login to the application using Facebook, but it always ends up with a bad request. I have read the documentation for Guzzle and Googled but no luck. Now i turn to you and hope that you can give me a hint. This is the message that i…
1
vote
1 answer

Google oauth satellizer uriredirect 404 error

I'm trying to integrate satellizer into my Angular app using Ui router, satellizer requires that I set a redirectUri. My question is, how do I allow this redirect to access my routes, i keep getting, 404 for the…
Laza
  • 91
  • 1
  • 8
0
votes
1 answer

POST request contains no 'body' field with Satellizer, Express and google auth

I am working on my first app using Satellizer that contains a NodeJS/Express back and an AngularJS front. I want my users to log in with their Google account. The front-end is at port 8000 and I have configured it like so…
Moulissse
  • 3
  • 2
0
votes
1 answer

Angular ng2-ui-auth and Lumen Socialite not matching request POST

ng2-ui-auth is so configured Ng2UiAuthModule.forRoot({ baseUrl:'http://localhost:8000', loginUrl: '/api/auth/login', providers: { google: { clientId: '....', url: '/api/auth/google' } } }) when sending session data to…
davidetrapani
  • 540
  • 2
  • 7
  • 16
0
votes
0 answers

$auth.login(..) from Satellizer returns $q deffered promise on error instead of resolved object

I'm using Satellizer 0.15.5, Webpack 2 and Angular 1.6.6 Using email/password authentication as described here: Login with Email and Password When login successful, everything works fine and in resolve, I get the response with a token. When…
Anatoly
  • 5,056
  • 9
  • 62
  • 136
0
votes
1 answer

Twitter API Email not getting

I am using the following code to get email after twitter login var requestTokenUrl = 'https://api.twitter.com/oauth/request_token'; var accessTokenUrl = 'https://api.twitter.com/oauth/access_token'; var profileUrl =…
0
votes
1 answer

Problems with authentication token when using satellizer

I'm trying to use Satellizer 0.15.5 to manage my user authentication. I configure my satellizer as follows: $authProvider.loginUrl = "http://localhost:8080/login/"; $authProvider.tokenName = "Authorization"; $authProvider.tokenPrefix = "myApp", And…
Manu
  • 145
  • 1
  • 9
0
votes
0 answers

Satellizer removes my app's JWT from local storage

I am using Angular Satellizer v0.15.x with bower in my Angular v1.6.4 app. My exact workflow is as follows: User opens a page. The user clicks on a button. Google sign in popup opens using satallizer's $authenticate('google') method. User signs…
31piy
  • 23,323
  • 6
  • 47
  • 67
0
votes
2 answers

How to save JWT to localStorage

I am using Angular-satellizer extension for the login/register feature but I am stuck at number 7. I cant save JWT to localStorage. I checked the developer tools in chrome but there is no token. .controller('loginCtrl', function($scope, $state,…
Nasuh
  • 355
  • 3
  • 20
0
votes
0 answers

Satellizer login behind facebook app

If i need to login in my website is behind the facebookApp in the webview of facebookApp, the popup don´t work on Iphone 6s IOS 10.1, the website doesn't login. Is a issue or how would be solve ?
0
votes
1 answer

Satellizer isn't sending Authentication headers with some clients

Similar to this question. But OP stated that his problem solved "on its own". Also similar to this. (I'm going to copy paste some parts of the descriptions since it's pretty much the same problem) I am working on a project using angularjs/laravel.…
0
votes
1 answer

JWT not sent when loading url directly from browser address bar

I have a MEAN stack application that uses JWT for authentication. I use Satellizer (an Angular module) to implement the JWT authentication flow. It sends the Authorization header with the bearer token whenever requests are made through the app. My…
davidchoo12
  • 1,261
  • 15
  • 26
0
votes
0 answers

storing access_token in satellizer , Oauth2 password grant

I'm using laravel passport Oauth2 password grant mechanism to authenticate my users. i'm simply taking there email and password and my server is returning, grant_type access_token refresh_token expires everything is working great but i'm using…
Rahul
  • 929
  • 2
  • 8
  • 17
0
votes
1 answer

MEAN Stack - Satellizer - Avoiding same user logging in twice (avoiding multiple sessions)

I am using satellizer in my second MEAN webapp and I need to avoid a user from loggin in twice at the same time (using two different computers). My approach would be: Create a collection that stores the users that are logged in. Every time a user…
Egidi
  • 1,736
  • 8
  • 43
  • 69
0
votes
0 answers

iPhone4+ and safari getting issue of "Blocked a frame with origin http://hostname from accessing a cross-origin frame."

I'm using this plugin in my application. All the functionality is working fine on all the browsers. But in some of the browsers it is not working. I'm getting this error when I checked in console angular.min.js:107 Error: Blocked a frame with origin…
Lakhwinder Singh
  • 5,536
  • 5
  • 27
  • 52