facebook-login

Login Error: There is an error in logging you into this application. Please try again later

拥有回忆 提交于 2020-01-18 13:38:40
问题 I am getting this error. When I try to sign in with facebook to my app. When I first time authentication it will correctly working. After I unistalled my application and now trying to sign in with Facebook on that I am getting this error. Another Issue : After authenticate in device1 and try to login with facebook on device2 also same error is getting. Solution I Found : when I remove App authentication from Facebook App Settings it is working in above scenario's but this is not an good

Facebook app review -

坚强是说给别人听的谎言 提交于 2020-01-17 06:01:31
问题 We understand that for Facebook to review apps, the app needs full functionality to be able to demonstrate the permissions needed through App Review. In our case, we haven't started developing the app yet. Is there a way to contact the review team, explain our intended usage for the specific permission, know in advance that the app will pass, so that we can start programming knowing that when we will post for review, the app wont get rejected. This could save a lot of time because If the App

Launch new activity after successful Facebook login, Facebook Api v.4.0 | Android

懵懂的女人 提交于 2020-01-17 03:49:45
问题 I'm an android noob and want to use Facebook Api to login to my app. I have managed to setup Facebook login using LoginButton class on a fragment from Facebook documentation. Now I can login using Facebook, each time I succesfully login I get the logout button but I need to be able to redirect to another activity after successful login or when logged in. How can I track login status and redirect since in Api 4.0 Session doesn't work? 回答1: Make sure your Activity or Fragment implements

Pressing Facebook Login button does nothing

我的未来我决定 提交于 2020-01-16 11:26:15
问题 Here is how I implemented callback mechanism for FB login button: protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); FacebookSdk.sdkInitialize(getApplicationContext()); AppEventsLogger.activateApp(this); setContentView(R.layout.activity_main); loginButton = (LoginButton)findViewById(R.id.login_button); callbackManager = CallbackManager.Factory.create(); loginButton.registerCallback(callbackManager, new FacebookCallback<LoginResult>() { @Override public

Make Button touchUpInside FBLoginView

不羁的心 提交于 2020-01-16 01:12:20
问题 I have a FBLoginView with property loginButton, and I want to make a button that is not in the same view fire this FBLoginView built in button feature. Does anyone have any suggestions? thanks 回答1: Download latest facebook SDK install and import coreKit & LoginKit frameworks in target. Create one sample button and give action. Ex: [fbLogin addTarget:self action:@selector(facebookLogin:) forControlEvents:UIControlEventTouchUpInside]; #import<FBSDKCoreKit/FBSDKCoreKit.h> #import<FBSDKLoginKit

Using parses Facebook login api, results in current user null

非 Y 不嫁゛ 提交于 2020-01-14 13:37:11
问题 I am using parse to crate a simple demo site that allows users to login/signup using their Facebook account. the login returns success, i also get correct user name i also see the database get populated with the facebook acount data but back at app.js: Parse.User.current() is null Jvascript on client side (index.html) <script> // Initialize Parse Parse.initialize("zzzzzzzzzzzzzzzzzzzzz", "zzzzzzzzzzzzzzzzzzzzzzzz"); window.fbAsyncInit = function() { Parse.FacebookUtils.init({ // this line

Unable to Access User's email. Getting “Undefined”

心不动则不痛 提交于 2020-01-11 05:40:11
问题 I have a website with the Facebook login implementation. My app has the permission for the user's email. Even though the user logs into my app using Facebook I can only retrieve his/her name or basic info. Not the email. So, here's the code I literally copied from the Facebook Developers Website: window.fbAsyncInit = function() { FB.init({ appId : 'xxxxxxxxxxxxxxx', // App ID channelUrl : '//domain.org/channel.html', // Channel File status : true, // check login status cookie : true, //

Working with Facebook login from localhost

北慕城南 提交于 2020-01-10 13:08:04
问题 I have a React/Horizon app with facebook login. I am wondering if there is any option to work with facebook login from localhost? 回答1: You need to register as facebook developer and create you app there. Once you have your web app registered you can go to your app and click on add product. Add Facebook Login. Then enable Web OAuth Login and add your localhost in the textfield below and save, you should be able to access it. Attaching a sample screenshot of my facebook app. 回答2: So in my case

Working with Facebook login from localhost

一笑奈何 提交于 2020-01-10 13:06:27
问题 I have a React/Horizon app with facebook login. I am wondering if there is any option to work with facebook login from localhost? 回答1: You need to register as facebook developer and create you app there. Once you have your web app registered you can go to your app and click on add product. Add Facebook Login. Then enable Web OAuth Login and add your localhost in the textfield below and save, you should be able to access it. Attaching a sample screenshot of my facebook app. 回答2: So in my case

Login Approach with Android Facebook 3.0 SDK

浪尽此生 提交于 2020-01-09 10:57:34
问题 While going through the sample program for Facebook Login, I came across SessionLoginSample's LoginUsingActvity.java https://github.com/facebook/facebook-android-sdk/blob/master/samples/SessionLoginSample/src/com/facebook/samples/sessionlogin/LoginUsingActivityActivity.java and another example has different approach to Login using UiLifecycleHelper as in Scrumptious example https://github.com/facebook/facebook-android-sdk/blob/master/samples/Scrumptious/src/com/facebook/scrumptious