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
0 answers

Is it possible to whitelist IPs (or otherwise disable bot detection) when running end-to-end tests against Google Sign in?

I would like to set up some end-to-end tests to make sure my Google Sign In button is working. I'd like to use tools such as: Cypress web tests Datadog live monitoring Mobile E2E tests to ensure my set-up works. Is it possible to whitelist certain…
MDalt
  • 1,681
  • 2
  • 24
  • 46
0
votes
0 answers

Linkedin sign in not working, errors sgugest that the library is not fully loaded

So I have this javascript code: $(document).ready(function () { $("#login_with_linkedin").on("click", requestAuthLinkedIn); googleInit(); LinkedInInit(); }); function LinkedInInit() { …
Edgedancer
  • 127
  • 9
0
votes
0 answers

Adding a new middleware in my django ( 4.1.4) project

The above exception was the direct cause of the following exception: Traceback (most recent call last): File "C:\Users\HP\AppData\Local\Programs\Python\Python311\Lib\threading.py", line 1038, in _bootstrap_inner self.run() File…
0
votes
0 answers

Django site social authentication ERROR | Facebook OAuth - URL blocked error

I am working on a Django web application in which I have to implement social authentication using Facebook (reference - Django 4 By Example). I have installed the required python packages social_django, django_extensions and I am operating the…
0
votes
1 answer

Is it possible to implement social sign-in and sign-in with email and password both?

Let's suppose user initially signed in website/app using social sign-in (ex: By Google, GitHub etc.). Is that user will able to login using email and password (same as used for social sign-in) ? Is it possible ? If Yes, then how ?
0
votes
0 answers

how to make sure Handler.Options are initialized properly everytime?

created an authenticator based on OAuthHandler. in order to make it work, I also needed to specialize a set of options derived from OAuthOptions. public class MyHandler : OAuthHandler { public MyHandler(IOptionsMonitor
Will Marcouiller
  • 23,773
  • 22
  • 96
  • 162
0
votes
0 answers

User Auth/Identity Service that takes care of social logins?

I am looking for a service similar to: Amazon Cognito, Okta, Auth0, OneLogin, Google Identity Platform, but with one requirement that the above mentioned services do not fulfil: the "social"/3rd party logins, like Facebook, Google, Twitter, Apple -…
0
votes
1 answer

Can we do twitter authentication without firebase in flutter app?

I just want to ask that can we do twitter authentication in flutter project without using firebase?
0
votes
0 answers

How can I link multiple social logins in same federated ID AWS Cognito?

I have created a User pool and Federated Identities in AWS. Everything works fine I'm facing an issue, when I log in with google with abc@gmail.com an id is created in federated Identities, and when I log in with Facebook with abc@gmail.com I want…
0
votes
1 answer

How I can change password in Azure AD

I am using Microsoft azure ad a authentication. When I am trying to change the user password with graph api it will give me an error I have also set permission that is required for password change, but then it will also not work I have wrote code…
0
votes
1 answer

Flutter Firebase Google Auth doesn't work in production

I'm trying to get my Flutter Web app to work with Firebase Google Auth. Everything works locally, but on the production server (hosted on Firebase) I just get the following not helpful stack trace: js_helper.dart:1111 Uncaught b @…
schneida
  • 729
  • 3
  • 11
  • 37
0
votes
1 answer

Xamarin forms WebAuthenticator usage

I'm trying to implement Facebook Auth for Xamarin Forms App. I'm doing everything like in this tutorial https://learn.microsoft.com/en-us/xamarin/essentials/web-authenticator?tabs=android so I'm using server side auth. Here is my mobile app code: …
Gleb
  • 1,412
  • 1
  • 23
  • 55
0
votes
1 answer

How to plug-in social login with Google, Facebook and other accounts into your existing authentication system made by classic asp.net?

I'm looking at ways to incorporate social logins to log in with accounts like Google/Facebook/Twitter, etc. into an authentication system that integrates web applications created on several different platforms. I'd like to hear your constructive…
0
votes
1 answer

Adding Social Authentication to Django

I am using Django 3.0.5 and python 3.6. I want to add social authentication for my blog. Related files Settings.py, urls.py and login.html are: Settings.py: import os BASE_DIR =…
ankit
  • 277
  • 1
  • 4
  • 25
0
votes
2 answers

Adjusting Google and Facebooks official Log-In Button with Firebase

I'm trying to add Google and Facebook Login through the Firebase Authentication to my App. When I add the official Google & Facebook Log-In button at a LinearLayout it looks like below: (Nexus 5X API 25): or even worse, like this (LG G7 ThinQ API…