I'm trying to implement Facebook social login in angular9 using angularx-social-login. But I'm getting this error. thanks in advance.
Getting error while trying to implement facebook social login in angular9 while using it in http
537 views Asked by Shibin Mariyan Stanly At
1
There are 1 answers
Related Questions in ANGULAR
- Firebase link existing user to anonymous account?
- It doesnt always show all the books on my homepage
- Google adsense ads.txt status cannot be not found
- When I navigate to the URL'http://localhost:4200/', it redirects me back
- Ionic Angular Standalone ion-icon are not showing at all
- How to make Angular understand that view child is of a specific type, not a general ElementRef?
- vscode, debug angular, first time, doesn't debug, 2nd time stops at main.js then it's ok
- How to perform CRUD operations on a static JSON array in Angular? (without API)
- Ngrx props<>() method in createAction()
- How to animate rotation of an image inside input control?
- Detecting click inside and outside of the listening component in Angular
- Angular - type guard not narrowing types
- In node_modules file i am getting Angular genric error while using fontawesome in angular12
- Angular 16 sending null values to API
- GoogleCloud Error: Not Found The requested URL was not found on this server
Related Questions in FACEBOOK-LOGIN
- I am having trouble understanding the docs for Facebook Login SDK
- Can I use OIDC flow for Facebook Login for Bussines?
- Facebook popup authentication loses window.opener reference
- Facebook Messenger Chat throws CORS errors, conflicts with Facebook Login
- Getting 'Minified invariant #21945;' error when implementing `Facebook Login for Business` using User Access Token
- <Warning>: The value for FacebookAdvertiserIDCollectionEnabled is currently set to FALSE
- How to resolve "Facebook Login is currently unavailable for this app, since we are updating additional details for this app"?
- How to resolve the “Invalid Privacy Policy URL” error
- Facebook Business and Developer account is on different account
- "app isn't available" Facebook App Login Error
- Methods of facebookCallback are not being called while trying to login with facebook
- Integrating Apple, Google, and Instagram (Meta) Sign-In for Social Media Registration/Login and User Data Handling
- Facebook Login for business stopped working after updating iOS Facebook SDK. Error: Invalid Scopes: opened
- OWIN Facebook login throws JsonReaderException
- Facebook Business Login Not working (It looks like this app isn't available)
Related Questions in ANGULAR-SOCIAL-LOGIN
- angularx-social-login - GetAccessToken prompting sign in pop up again
- Angular V17-SSR-ERROR Error: NullInjectorError: No provider for SocialAuthServiceConfig
- I can't log in to KakaoTalk only on my iPad
- Angular Social Login - Google sign up window does not pop up in many browsers
- Why isn't the Google button showing in Akeeba social login when using Helix Ultimate Template?
- How do I remember session of @abacritt/angularx-social-login after refresh
- ionic-Cordova-ios : could not change the origin for ios app
- Google login in Angular14 with @abacritt/angularx-social-login and the newer Google GIS library
- how to implement social login in angular 15 application?
- Failed to obtain access token error when using passport-apple
- White Background issue around "Sign in with Google" Button and "One Tap" Popup
- Angular directive required to implement GoogleSigninButtonDirective in @abacritt/[email protected] does not work for Angular 13
- request running multiple times
- Unable to resolve dependency tree @angularx-social-login
- angularx-social-login Facebook return "Error: init not called with valid version"
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

The problem is that your pages is not served under https. Even it is localhost in order to use fb login you have to use https. Also it is the same for every social login(google,fb,ms,etc). This restiction is due to security reasons.
In order to server you dev environment in https you have to add you cert to the server.
I found this tutorial in order to genereate for localhost https://medium.com/@richardr39/using-angular-cli-to-serve-over-https-locally-70dab07417c8