facebook-login

How to add scopes to Facebook login with Firebase

一笑奈何 提交于 2021-02-19 03:54:59
问题 I am trying to add scope and access more properties of the signed in user from Facebook. However, Firebase 3 sdk seems to not be clear on that. provider = new firebase.auth.FacebookAuthProvider(); provider.addScope('public_profile, email, gender, user_birthday'); firebase.auth().signInWithPopup(provider).then((result) => { var token = result.credential.accessToken; var user = result.user; // doesn't have any extra information }); Has anyone figured out how to access additional scope? 回答1: The

ASP.NET Core and Angular: Microsoft Authentication

谁说胖子不能爱 提交于 2021-02-08 10:36:28
问题 For the moment I'm trying to add third party authentication to my ASP.NET Core web application. Today I've successfully implemented Facebook authentication. This was already a struggle since the docs only mention Facebook authentication for a ASP.NET application with razor pages (https://docs.microsoft.com/en-us/aspnet/core/security/authentication/social/facebook-logins?view=aspnetcore-2.2). Nothing has been written in the docs about implementing this for Angular apps. This was the most

How to login to Facebook on SwiftUI?

百般思念 提交于 2021-02-07 12:27:46
问题 There are not many resources explaining Facebook Login with SwiftUI. I'm not sure whether my code requires a ViewController or not because Facebook's LoginManager.login() contains a ViewController parameter - however this doesn't really translate to SwiftUI. Regardless, I am trying to login the user to Facebook when they click on the Button below: LoginView.swift import Foundation import SwiftUI import FBSDKLoginKit struct LoginView: View { @EnvironmentObject var auth: UserAuth var body: some

flutter_facebook_login CocoaPods dependency error

非 Y 不嫁゛ 提交于 2021-02-07 12:24:24
问题 I am try add facebook login to Flutter app. I am use flutter_facebook_login . But when I try build for iOS give error: Resolving dependencies of `Podfile` [!] CocoaPods could not find compatible versions for pod "FBSDKLoginKit": In Podfile: flutter_facebook_login (from `.symlinks/plugins/flutter_facebook_login/ios`) was resolved to 0.0.1, which depends on FBSDKLoginKit (= 4.39.1) None of your spec sources contain a spec satisfying the dependency: `FBSDKLoginKit (= 4.39.1)`. You have either: *

What is the reason behind “unresolved reference” when using kotlin for FacebookLogin?

只愿长相守 提交于 2021-01-27 20:00:27
问题 I keep getting a "unresolved reference: FacebookCallback" error when I am trying to implement the code attached in the picture. I am trying to set up facebook login as instructed in this link: https://developers.facebook.com/docs/facebook-login/android#addbutton I am new to Kotlin but I can't see what I'm doing wrong here. EDIT: Here are my gradle files: apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'com.neenbedankt.android-apt' android {

I am getting an error when deleting the scheduled Facebook page post: pages_manage_engagement are not available

不问归期 提交于 2020-12-11 00:57:38
问题 In our android app, we have provided the functionality to schedule and publish posts on Facebook pages. and also we have provided functionality to delete the scheduled post. for the above features, we have already taken the required permissions( publish_pages, manage_pages ) through App Review. All the functionality worked perfectly on our Android & iOS platforms. but for the last few weeks, we are getting error in deleting schedule posts on the Android platform. when we have checked what's

I am getting an error when deleting the scheduled Facebook page post: pages_manage_engagement are not available

感情迁移 提交于 2020-12-11 00:48:23
问题 In our android app, we have provided the functionality to schedule and publish posts on Facebook pages. and also we have provided functionality to delete the scheduled post. for the above features, we have already taken the required permissions( publish_pages, manage_pages ) through App Review. All the functionality worked perfectly on our Android & iOS platforms. but for the last few weeks, we are getting error in deleting schedule posts on the Android platform. when we have checked what's

I am getting an error when deleting the scheduled Facebook page post: pages_manage_engagement are not available

浪子不回头ぞ 提交于 2020-12-11 00:47:17
问题 In our android app, we have provided the functionality to schedule and publish posts on Facebook pages. and also we have provided functionality to delete the scheduled post. for the above features, we have already taken the required permissions( publish_pages, manage_pages ) through App Review. All the functionality worked perfectly on our Android & iOS platforms. but for the last few weeks, we are getting error in deleting schedule posts on the Android platform. when we have checked what's

How to fix 'Facebook has detected MyApp isn't using a secure connection to transfer information.' error in Laravel

核能气质少年 提交于 2020-08-24 05:40:30
问题 I am trying to connect my app to facebook login with Laravel and socialite package.But i don't know why facebook show me this error. I searched internet but i couldn't find anything .How can i fix this error ? I thought that if i make my connection with https it will work but after making https again error appears. My code in laravel: web.php Route::get('login/{provider}', 'SocialController@redirect'); Route::get('login/{provider}/callback','SocialController@Callback'); SocialController.php