facebook-login

Facebook SDK for Android - first login is very slow / takes a very long time

好久不见. 提交于 2019-12-08 16:37:25
问题 My Android app integrates with Facebook using the SDK v 3.01. Login using the line below: Session.openActiveSession(m_activity, true, callback); The first time a user tries to login to Facebook through the app, it takes a REALLY long time to get to the point where the user is expected to enter input (username / pass). I have measured cases of over a minute, but ~30 seconds is "normal". 99% of this time is just waiting for the Facebook SDK to open the Facebook login page. User sees an empty

Why is the Facebook login not asking for correct permissions?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-08 15:53:46
问题 I use Facebook login using FB.login (and I don't want to use the Facebook login button). My problem is that after login, the Facebook dialog don't show the listed permission, as follows. FB.login(function (response) { if (response.status == "connected") { //alert(" connected "); } else { //alert(" not connected "); } }, { scope: 'email' }); The Facebook dialog show " Access my basic information " only. How do I fix this problem? Note: if I try the Facebook login, it shows the permission

Auto redirect after facebook login with Javascript SDK

久未见 提交于 2019-12-08 13:26:34
问题 Please help me. I know this is very simple, but my bad luck :( I am trying to implement facebook login with JavaScript SDK in my site by following facebook official docs. When i go to mysite login page, then facebook login window pop up automatically. But i want it after click login button. The login button: <p class="fb_login">or <img src="assets/img/fb-login-button.jpg" onClick="FB.login()" onlogin="alert( 'Logged In' );"></p> Javascript: window.fbAsyncInit = function() { FB.init({ appId :

Firebase forgot password- how to identify whether user signed in with email or facebook?

点点圈 提交于 2019-12-08 13:09:45
问题 This is my scenario. I am developing a firebase login iOS app. For this i am using Email & Password Authentication and facebook authentication . Lets assume if user knows his email but forgot the password. How can i identify if the user logged in with facebook or email, and how to reset the password? i searched a lot. But could not find a solution for that. can anyone help me. 回答1: You can lookup the providers linked to an account using: fetchProvidersForEmail To reset the password, use:

You are not logged in.Please log in and try again.(iOS)

。_饼干妹妹 提交于 2019-12-08 12:06:07
问题 I have implemented Facebook Login using OAuth 2.0 in my xamarin.forms application.But when I try to navigate to facebook page it gives following error: You are not logged in: You are not logged in.Please log in and try again. It works fine with android but not working with ios. I have searched it but didn't get working solution. 回答1: I got the solution: Redirect URL should be same ,when you request for Facebook login and in Facebook settings(Valid OAuth Redirect URI's). Thank you. 回答2: If you

Facebook login with angularjs?

故事扮演 提交于 2019-12-08 09:30:48
问题 I am working on project on angularjs, i have to implement Facebook login service there. I am new to angularjs. Can anybody suggest me any helpful tutorial(step by step) about the Facebook login service implementation. thanks in advance 回答1: You can try searching ngmodules.org for some inspiration. There are a couple of modules for this, like AngularJS-Facebook-Login or ngFacebook. Also, this is a nice resource 来源: https://stackoverflow.com/questions/23730783/facebook-login-with-angularjs

[BFTask isFaulted]: unrecognized selector sent to instance error

风格不统一 提交于 2019-12-08 08:51:11
问题 Updated to Parse SDK 1.7.1 with Bolts 1.1.4 and using the new and latest Facebook SDK. Every time I login the user I get the following error: [BFTask isFaulted]: unrecognized selector sent to instance error. I'm able to login the user, the user's info is store in parse, but not sure how to resolve this exception. Anyone else having this problem? 回答1: Had this problem also. I copied the Parse Bolts framework to the project directory. Referencing didn't do it. Same for Parse FacebookutilsV4.

django-allauth returns error “Reverse … with arguments '()' and keyword arguments '{}' not found”

狂风中的少年 提交于 2019-12-08 06:19:14
问题 EDIT: Kevin's answer below solved my issue. Turns out "allauth does not support namespaces" so I shouldn't have introduced this into my urls.py ORIGINAL POST: I have installed django-allauth exactly as per tutorials https://github.com/pennersr/django-allauth I have a very basic problem here; can't get basic user login/out pages working even before I add in social integration. By navigating to /admin, I clicked "log out", so I am not a logged in user. Now when I visit /accounts/login I am met

Remove “user_friends” permission under Facebook Developer App Dashboard

我与影子孤独终老i 提交于 2019-12-08 05:08:09
问题 We are using Facebook Login for our Android app. We have a custom button view for Facebook Login and the exact code we are using for logging with Facebook is: LoginManager.getInstance().logInWithReadPermissions(this, Arrays.asList("public_profile")); Both "email" and "public profile" permissions are approved by default. We don`t need and also we are not using the "user_friends" permission or anything related to it. Under the " Facebook Developer App Dashboard -> App Review - My Permissions

How to store the uid of the Facebook users in Firebase?

孤街醉人 提交于 2019-12-08 04:41:38
问题 I have just integrated the Facebook Login function to my Firebase App. I want to add some extra information to the user in the FIRDatabase. Thats why I add a child user with the uid as the identifier to my firebase database. When a user uses the "normal" sign up function (without Facebook) everything works smooth like butter. However now that I added the same information to the Facebook register form, it gives that fatal error which occurs when swift found unexpectedly nil while unwrapping an