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
0
votes
1 answer

"Get Authenticated" loops forver on initial startup

Whenever I first load up my AngularJS application, I get a blank screen and this attempt to check if the user is authenticated in a never-ending loop. For this project, I am using sails version 0.11.0, the newest version of AngularJS for frontend…
Zach Cook
  • 604
  • 12
  • 33
0
votes
1 answer

satellizer is asking for a token?

I am using satellizer to make a signup form. But whenever i try to signup, it gives me this error Error: Expecting a token named "token" but instead got: {"email":"qwe@adfs.com","id":11} at…
user3423235
  • 65
  • 3
  • 9
0
votes
1 answer

Angularjs Satellizer Twitter login CORS error on redirect

I'm trying to implement a login with satellizer for twitter. I'm following the examples on the satellizer repository, so on client-side i do the following: $auth.authenticate('twitter') .then(function (res) { console.log(res); …
pietrovismara
  • 6,102
  • 5
  • 33
  • 45
0
votes
1 answer

Parse Twitter Login

I am currently trying to develop an AngularJS application using Parse.com as backend. I have implemented email login and sign up features and now I want to implement Sign In With Twitter option. I am using Parse JS SDK for the rest of my project but…
SuperioREX
  • 257
  • 1
  • 2
  • 9
0
votes
3 answers

AngularJS Satellizer jwt CORS issue when authenticated

i'v got weird behaviour of my code. I'm using Satellizer to authenticate user and when user is not authenticated when i execute this code: $http.get('http://eune.api.pvp.net/api/lol/eune/v1.4/summoner/by-name/somename?api_key=XXXXXXXXXXXXXXXXX') …
szapio
  • 998
  • 1
  • 9
  • 15
0
votes
1 answer

Satellizer and Facebook login

I'm using rails and angular to build an app. I'm using satellizer to login in the app. Here is my devise configuration: config.omniauth :facebook, "xxx1", "secret", :strategy_class => OmniAuth::Strategies::Facebook On JS…
Müsli
  • 1,744
  • 7
  • 27
  • 50
0
votes
1 answer

restangular query does not working?

I am running this code. people collection contains 20 peoples and every body has friends list field containing 6 friends. query written in below not return in any data. but if you remove query then it return 20 people. My doubt is bellow code…
user3458284
  • 113
  • 1
  • 9
0
votes
1 answer

Disable Satellizer Popup Window Title Bar

I'm using the satellizer plugin for authentication to Facebook. The problem I'm having is the popup that the facebook login is using has the title bar and everything. I need to remove the title/menu bar, etc. It should be a modal window. I can't…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
0
votes
0 answers

Invalid_request: Missing authority: file:// in AngularJS with Satellizer

I am trying to use satellizer to authorize with a Google account. When I click login, a popup appears showing this: Invalid parameter Invalid parameter value for redirect_uri: Missing authority: file:// Request Details: scope=openid profile…
Pham Minh Tan
  • 2,076
  • 7
  • 25
  • 37
0
votes
2 answers

Changing page in stateProvider not working

I'm using angular with ui-router and satellizer to check weather user is logged in or not. Here is my example code: var App = angular.module('myApp', ['satellizer', 'ui.router']); App.config(function ($stateProvider, $urlRouterProvider) { …
piernik
  • 3,507
  • 3
  • 42
  • 84
-1
votes
1 answer

How to do asynchronous task while defining a permission using angular permission library

I'm using angular-permission library along with ui-router and satellizer. Following is the state definition for home. In that I'm checking whether user is authorized using angular-permission. $stateProvider.state('500', home); var home = { …
-2
votes
1 answer

Laravel doesnt send token

I uploaded my app in the server i changed the folder structures i made the changes in index.php.Everything is working fine i can get the views(im using angular for the frontend and satellizer for the tokens)but whenever i try to make a call to my…
Mat.
  • 541
  • 2
  • 11
1 2 3
9
10