Questions tagged [social-authentication]

A form of single sign-on using existing login information from a social networking service such as Facebook, Twitter or Google+ to sign into a third party website.

A form of single sign-on using existing login information from a social networking service such as Facebook, Twitter or Google+ to sign into a third party website.

88 questions
0
votes
1 answer

Django: Adding social authentication to site

I'm a beginner in Django and I'm studying Django from the book "Django 2 by Example", written by Antonio Mele. I'm trying to add social authentication to my site(book page no. 251) {project name-bookmark, app name-account}. Up to this point, I'm…
Sheraram_Prajapat
  • 589
  • 1
  • 9
  • 27
0
votes
1 answer

What should be authentication strategy between client and server when only social providers login authentication is used?

Given the following conditions: A website only uses social providers in order to authenticate users (Google/Facebook). There's no native authentication. Only some sections (e.g. product reviews) are restricted. The website communicates with the…
0
votes
0 answers

Test the laravel socialite redirect

I've implemented laravel socialite authentication and I'm trying to write a test to the login flow I have the two functions: redirectToProvider and handleProviderCallback public function redirectToProvider($provider) { return…
0
votes
2 answers

Social login error occurred when try to login

I am working on android social login integration, I followed up the facebook official documentation All worked correctly but I get the following error when trying to log in. My code snippet is here loginButton.registerCallback(callbackManager, new…
0
votes
1 answer

How can I detect if a user already singed with a social account on my website and now wants to create a normal account?

How can I detect if a user already singed with a social account on my website and now wants to create a normal account? How do I detect the changes? My personal vision on this: Let the user sign in with social auth then add the email in the…
0
votes
1 answer

Angular 6 - Google sign in - token refresh with SocialLoginModule

So I'm building a web application using Angular 6 and I implemented google sign in with SocialLogin library. This is my code: public socialSignIn(socialPlatform : string) { let socialPlatformProvider; if(socialPlatform == "facebook"){ …
0
votes
1 answer

Android - How to login through my website (using social network) and receive jwt token?

I have laravel website with bunch of social logins, and want to use my website for social auth. I want this to happen: when my app user click on social login button - my website social login url is started and after he successfully login it…
jsHate
  • 499
  • 1
  • 3
  • 20
0
votes
1 answer

Social login keeps the provider app logged in

I visit an app that uses oauth social login I choose say gmail; I get sent to gmail site I log in to gmail and then get sent back to the app When done with the app I log out After step 4, even if I close the browser and open anew, visiting gmail…
0
votes
1 answer

Sign into social login on behalf of another device

I have a kiosk like system that I would like users to authenticate with. It has social login with Gmail for example. It has no keyboard so signing in is a little awkward. Is it possible to have another device, say a smartphone, sign in and transfer…
ovg
  • 1,486
  • 1
  • 18
  • 30
0
votes
1 answer

"Your credentials aren't allowed" - Google+ API - Production

I recently implanted the connection with facebook and google on my local server, and everything worked. But, when I tried to do it in production, the connection with google returns: "Your credentials aren't allowed". (Facebook works) I don't know…
0
votes
1 answer

How to add multiple social logins to my webapp and do authentication on client side?

I want to add popular social authentication mechanisms to my website, I looked at the passport library (https://www.npmjs.com/package/passport) but i want to achieve the client side authentication with a popup rather redirecting to the google/…
user7045690
0
votes
1 answer

Only Authenticate from server (Facebook and Google access token) using Java Spring

I only want to authenticate the user access token which I get from javascript. I am using spring rest service. I have seen this: https://developers.google.com/identity/sign-in/web/server-side-flow However I am trying to find the exact code piece for…
legend12345
  • 162
  • 2
  • 14
0
votes
0 answers

Response Code From Google comes in wrong format upon on first sign in using Oauth 2.0 Authentication

Response Code received after signing on to google for first time. [http://localhost:8080/?state=trueprompt%3Dconsent&code=4%2FjlCxJC7rg57nOG7w-0MP4M1BuQ7cbI4GLCNofMzPeQQ#][1] Below given is the code i am using GoogleConnectionFactory…
user3292629
  • 138
  • 2
  • 16
0
votes
2 answers

How to get Access token from Linked In android sdk?

I have given social authentication via Linked In. I have successfully integrated the mobile sdk into my project. Now the question is, how to get access token. I didn't find any way to fetch access token from sdk. Please help me.
Rohan Patel
  • 1,758
  • 2
  • 21
  • 38
0
votes
1 answer

Socially authenticated user using laravel Auth

I am storing the user details of social authentication to User (authenticable) model, and login the user. So that i can use the features of Auth. Callback function: public function callback() { $user = Socialite::driver('facebook')->user(); …