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

Satellizer not pass Authenication header to my API

So I am currently working locally, I have an API (Laravel). Everything is working great, I can login using Facebook, I get a JWT from my API and that is saved in local storage, however, after being logged and API calls do contain the 'Authorization:…
0
votes
2 answers

angularjs POST 405 method not allowed

I have an angularjs project that contains an oauth to github. I use the satellizer plugin to deal with the oauth protocol. Every time I try to connect I get this error: Here is my route config (it's ES6 using Babel) : export default function…
Giu
  • 1,832
  • 2
  • 16
  • 31
0
votes
2 answers

Satellizer: login using FB's access_token

I'm implementing a hybrid iOS web and native app. I'm using iOS native FB login capabilities, and sending the access_token from the native app to the web, which uses Satellizer. The question is: can I avoid the FB permissions dialog and directly use…
Javier Marín
  • 2,166
  • 3
  • 21
  • 40
0
votes
1 answer

JWT Auth and Satellizer - Increase expiry token time for mobile app

I am using Ionic and satellizer along with Laravel and JWT auth to create an API. Everything is good, but the one issue is the token being removed from local storage after an hour or so. I really want the token to exist until the user logs out, as…
Lovelock
  • 7,689
  • 19
  • 86
  • 186
0
votes
2 answers

Laravel not detecting auth token sent in the header and JWT package

I have set up a Ionic app and also started using Laravel for the API. Everything works great in postman and Ionic up until the point where I sent the token. Using a package called Satellizer for angular, it adds the token in local storage to the…
Lovelock
  • 7,689
  • 19
  • 86
  • 186
0
votes
3 answers

Satellizer.Js is not sending the Authorization header to the server

Problem: Satellizer is not sending the Authorization Header to server. I am trying out Satellizer.Js on a project that I am working on. It's great so far, however, it is not properly sending the Authorization Header in the request to the server…
elloM8
  • 164
  • 1
  • 7
0
votes
1 answer

Token mismatch betweeen Auth and JWTAuth

I am using https://scotch.io/tutorials/token-based-authentication-for-angularjs-and-laravel-apps for token based authentication. For this I am using middleware 'jwt.auth' in route as guided. Which is working fine. And…
user5766547
0
votes
3 answers

Satellizer: Not returning email in login with facebook

I am using https://github.com/sahat/satellizer for adding login with facebook functionality in my angular + laravel ( 5.2) application. Here is the code I am using in php to call the facebook graph api $client = new GuzzleHttp\Client(); …
0
votes
1 answer

what should be implemented in the facebook redirect uri?

I have an angular 1.5.0-rc0 application with satellizer in order to login to facebook. the website connects to a nodejs server at https://myalcoholist.com:8888 the website is https://myalcoholist.com to configure satellizer with facebook i have the…
ufk
  • 30,912
  • 70
  • 235
  • 386
0
votes
0 answers

Token returned by JWTAuth is not as expected, console.log gives not defined

The token returned my JWTAuth and Laravel is not defined. The localstorage shows satellizer_token: [object Object] AuthController protected function createToken($user) { $customClaims = [ 'sub' => $user->id, 'iat' => time(), …
Stacy J
  • 2,721
  • 15
  • 58
  • 92
0
votes
1 answer

Unable to login via twitter using satellizer

I have a angular web application and want to twitter and facebook login. I used satellizer module for both. Facebook login working fine for me. But when i clicked on twitter login button a blank popup window appears and nothing to happen. Please…
Gurpinder
  • 634
  • 1
  • 5
  • 18
0
votes
1 answer

Not receiving email and public_profile after facebook login using satellizer.js

I am using satellizer.js for facebook login in my website. I am using nodejs server. This is the configuration i am using. $authProvider.facebook({ url: '/api/auth/facebook', authorizationEndpoint:…
vishal patel
  • 832
  • 1
  • 7
  • 21
0
votes
1 answer

Use Twitter API with Laravel AngularJS Satellizer

I've created an app with working log in to twitter via angularjs front end and Laravel back end and using the Satellizer library. Now I want to interact with the Twitter Rest API, using the oAuth generated by satellizer, does anyone have a…
Lewis
  • 624
  • 9
  • 16
0
votes
0 answers

satellizer req.headers.authorization not defined in nodejs demo

I'am using satellizer to authenticate my app with backend using nodejs, but every http request doesn't attact req.headers.authorization, and i don't know why, please help me fix this, tks in advance app.js angular.module('userApp',…
ldmtam
  • 1
  • 1
0
votes
1 answer

I can't get request payload when used $auth.signup(user)

I have a problem with satellizer api signup, when call the method $auth.signup(user) in my backend made with CodeIgniter I can't retrieve the values sent in user. I tried everything The methos of my library REST for options…
German
  • 413
  • 4
  • 15
1 2 3
9
10