Questions tagged [facebook-authentication]

Facebook authentication is popular sign in method for many websites using Facebook credentials.

Facebook authentication is popular sign in method for many websites using Facebook credentials. This cab be implemented with many SDKs like PHP, C#, android, etc.

816 questions
-1
votes
1 answer

Facebook authentication error $facebook->getUser(); not working?

I am using this URL for authentication: https://www.facebook.com/dialog/oauth? client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=email,read_stream It is working fine, but when I use this code it always gives me a 0 value: $user =…
Badal
  • 3,738
  • 4
  • 33
  • 60
-1
votes
1 answer

Facebook (JavaScript) permission dialog for email - Error

I am developing a Facebook application with FB JavaScript SDK. I need email permission on start of the application I am using OAuth Dialog. Here is the code:
-1
votes
0 answers

why the difference Facebook dialog style?

when connect facebook, I get this dialog style but I want to show this
smilexu
  • 101
  • 3
-1
votes
1 answer

where to find appid

I registered my website in hopes to enable the facebook login script on my site, but after registration i was sent directly to the webapps page. Under the authentification section of the websites section it says I'll need my appid when filling out…
Paul Poole
  • 1
  • 1
  • 1
-1
votes
1 answer

Is there any way to authenticate customers with google or facebook in Shopify?

I wanted to add Facebook and Google login to the customer login page or in sign up in Shopify so tell me how I can implement it?
-1
votes
1 answer

How to use env variable before runApp(MyApp());

I need to pass an env variable to be used like this import 'package:flutter/foundation.dart' show kIsWeb; . . . void main() { // check if is running on Web if (kIsWeb) { final appId = String.fromEnvironment('FACEBOOK_APP_ID', defaultValue:…
user3808307
  • 2,270
  • 9
  • 45
  • 99
-1
votes
1 answer

SwiftUI: How to customise Firebase Facebook Authentication Login button?

Im somewhat new to SwiftUI and have encountered something i cannot fix myself. So im working with SwiftUI. And have successfully created a login page with firebase facebook authentication. And all the functionalities work just fine, but i would like…
-1
votes
1 answer

linkAndRetrieveData not working with Facebook for Firebase Authentication in iOS

First I am calling - FBSDKLoginManager().logIn(withReadPermissions: ["public_profile", "email"], from: self) On success getting credential - let credential = FacebookAuthProvider.credential(withAccessToken:…
-1
votes
1 answer

Facebook Login: App not setup: this app is still in development mode

When I try to use Facebook login during development I have this message appear in the web browser.
rharding
  • 551
  • 1
  • 3
  • 14
-1
votes
1 answer

Facebook login suddenly stopped in my facebook integrated android app since this morning

It was working fine till last night and I havent really made any change to my app. I now see a blank white screen with "facebook" written on top after I click on the auth/login button. Heres what I have tried so far without any positive…
-1
votes
1 answer

Facebook server-side authentication returns short-living access_token

I have posted this question in Facebook Developer Group but no-one could give a compete answer. I have a Facebook application which uses server side authentication. The code looks like this: $config = array(); $config['appId'] =…
-1
votes
2 answers

What is the best database type to store facebook UID?

Users of my application can authenticate via Facebook, so I store facebook uids in my database and when user logs in I need to query my database like this: SELECT * FROM users WHERE uid = _SOME_UID_; Now uid column is VARCHAR, but I think that I…
-1
votes
3 answers

login to Facebook without user interaction

I would like to perform the login procedure to Facebook on my server using python script : when I start my server he logs on to facebook using my private account. (ie without user interaction), you can do this? if so, how?
Safari
  • 11,437
  • 24
  • 91
  • 191
-1
votes
1 answer

signup to my website using facebook, but only for specific group member

I want to use sign up of facebook into my site, but allow to sign up for my website only for people who joined specific group on facebook. Is it possible to do?
-1
votes
1 answer

facebook auth and Ie9 p3p

i cannot get the facebook serverside oauth to work on ie9. it is working fine on firefox and chrome. i believe the problem is with the IE and not trusting iframes. The standard solution to this is to slap some P3P headers into the iframe…
lpic
  • 560
  • 1
  • 7
  • 20
1 2 3
54
55