• Basic Facebook Guide
" How to Install Facebook Farmville Games , Geting Facebook Marketplace App, How to Make Facebook Fan Page, Deleting All Facebook Searches History on FB , How to Login Instagram with Your Facebook , Facebook Marketplace Buy and Sell within Local Community Near Me , How to Deactivate FB Account Temporarily on Facebook, How to View Blocked Facebook List to Unblock blocked Friends , How to Use the “Nearby Me Friends” FB Feature on Facebook , Facebook Customer Care Center & Email Help Supports Contact Addresses "
Showing posts with label Sign In Facebook Sign In. Show all posts
Showing posts with label Sign In Facebook Sign In. Show all posts

Sign in facebook sign in

 3 Star hotel, Sign In Facebook Sign In     No comments   

Sign in facebook sign in
Sign in facebook sign in
Facebook login: Forgot your password? How to log into Facebook and reset your password
Facebook login: Forgot your password? How to log into Facebook and reset your password
FACEBOOK is the most popular social media platform in the world, with more than one billion people logging in every day to check their feed. Facebook has recently improved security to protect its users from hackers, but what do you do if you forgot your password? How do you reset your Facebook password?
Facebook login: Forgot your password? How to log into Facebook - how to reset your password (Image: GETTY)
Facebook has grown to become one of the most recognisable brands in the world, with more than one billion people having an active account.
Social media is a massive part of modern day culture, with users expecting tighter security for their personal accounts.
Facebook has plenty of security options in place to protect its users, but what happens if they forget their password?
Hackers can gain access to your Facebook account through correctly guessing your password, so it is recommended to change it regularly.
If you have recently changed it and can’t remember its, or you have forgotten a previous Facebook password, here is how to change it and log back in.

Related Posts:
  • How to permanently delete Facebook messages from f...
  • can Instagram
  • How we delete Facebook Account
  • What is followers in Facebook
  • How to convert facebook video to Mp3
  • How to get ur Instagram Password
  • Download Instagram for Tablet
  • How do i know if someone has Facebook Messenger
  • Where can i find location services on Iphone
  • No name Facebook
How to log into Facebook
It is likely you are one of the hundreds of millions of people whohavea Facebook account to connect with friends online.
If you are trying to login to your account, go tohttps://facebook.comto bring up the login page.
Ensure that no one else is currently logged into Facebook on your computer before entering your email address and password into the login boxes in the top right-hand section of the tab.
If someone is logged in, simply click at the top right of the Facebook page and select log out to sign the person out.
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sign in Facebook sign in

 create fb page, Sign In Facebook Sign In     No comments   

Sign in Facebook sign in
Sign in Facebook sign in        
Authenticate Using Facebook Login with JavaScript | Firebase
You can let your users authenticate with Firebase using their Facebook accounts by integrating Facebook Login into your app. You can integrate Facebook Login either by using the Firebase SDK to carry out the sign-in flow, or by carrying out the Facebook Login flow manually and passing the resulting access token to Firebase.
Before you begin
Add Firebase to your JavaScript project.
On the Facebook for Developers site, get the App ID and an App Secret for your app.
Enable Facebook Login:
In the Firebase console, open the Auth section.
On the Sign in method tab, enable the Facebook sign-in method and specify the App ID and App Secret you got from Facebook.
Then, make sure your OAuth redirect URI (e.g. my-app-12345.firebaseapp.com/__/auth/handler) is listed as one of your OAuth redirect URIs in your Facebook app's settings page on the Facebook for Developers site in the Product Settings > Facebook Login config.
Handle the sign-in flow with the Firebase SDK

If you are building a web app, the easiest way to authenticate your users with Firebase using their Facebook accounts is to handle the sign-in flow with the Firebase JavaScript SDK. (If you want to authenticate a user in Node.js or other non-browser environment, you must handle the sign-in flow manually.)

To handle the sign-in flow with the Firebase JavaScript SDK, follow these steps:
Create an instance of the Facebook provider object:

var provider = new firebase.auth.FacebookAuthProvider();

Optional: Specify additional OAuth 2.0 scopes that you want to request from the authentication provider. To add a scope, calladdScope. For example:

provider.addScope('user_birthday');

See the authentication provider documentation.
Optional: To localize the provider's OAuth flow to the user's preferred language without explicitly passing the relevant custom OAuth parameters, update the language code on the Auth instance before starting the OAuth flow. For example:

Optional: Specify additional custom OAuth provider parameters that you want to send with the OAuth request. To add a custom parameter, call setCustomParameters on the initialized provider with an object containing the key as specified by the OAuth provider documentation and the corresponding value. For example:

Reserved required OAuth parameters are not allowed and will be ignored. See the authentication provider reference for more details.
Authenticate with Firebase using the Facebook provider object. You can prompt your users to sign in with their Facebook accounts either by opening a pop-up window or by redirecting to the sign-in page. The redirect method is preferred on mobile devices.
To sign in with a pop-up window, call signInWithPopup:

firebase.auth().signInWithPopup(provider).then(function(result){
// This gives you a Facebook Access Token. You can use it to access the Facebook API.
Also notice that you can retrieve the Facebook provider's OAuth token which can be used to fetch additional data using the Facebook APIs.

This is also where you can catch and handle errors. For a list of error codes have a look at the Auth Reference Docs.
To sign in by redirecting to the sign-in page, call signInWithRedirect:

firebase.auth().signInWithRedirect(provider);

Then, you can also retrieve the Facebook provider's OAuth token by calling getRedirectResult when your page loads:

firebase.auth().getRedirectResult().then(function(result) {
if (result.credential) {
// This gives you a Facebook Access Token. You can use it to access the Facebook API.
var token = result.credential.accessToken;
The signed-in user info.
var user = result.user;
}).catch(function(error) {
// Handle Errors here.
var errorCode = error.code;
var errorMessage = error.message;
// The email of the user's account used.
var email = error.email;
// The firebase.auth.AuthCredential type that was used.
var credential = error.credential;

This is also where you can catch and handle errors. For a list of error codes have a look at the Auth Reference Docs.▸
Handling account-exists-with-different-credential Errors
Popup mode
// Step 1.
// User tries to sign in to Facebook.
auth.signInWithPopup(newfirebase.auth.FacebookAuthProvider()).catch(function(error) {
// An error happened.
if (error.code === 'auth/account-exists-with-different-credential') {
// Step 2.
// User's email already exists.
// The pending Facebook credential.
var pendingCred = error.credential;
// The provider account's email address.
var email = error.email;
// Get sign-in methods for this email.
auth.fetchSignInMethodsForEmail(email).then(function(methods) {
// Step 3.
// If the user has several sign-in methods,
// the first method in the list will be the "recommended" method to use.
if (methods[0] === 'password') {
// Asks the user his password.
// In real scenario, you should handle this asynchronously.
var password = promptUserForPassword(); // TODO: implement promptUserForPassword.
auth.signInWithEmailAndPassword(email,password).then(function(user) {
// Step 4a.
return user.link(pendingCred);
}).then(function() {
// Facebook account successfully linked to the existing Firebase user.

// All the other cases are external providers.
// Construct provider object for that provider.
// TODO: implement getProviderForProviderId.
var provider = getProviderForProviderId(methods[0]);
// At this point, you should let the user know that he already has an account
// but with a different provider, and let him validate the fact he wants to
// sign in with this provider.
// Sign in to provider. Note: browsers usually block popup triggered asynchronously,
// so in real scenario you should ask the user to click on a "continue" button
// that will trigger the signInWithPopup.

Related Posts:
  • How do i change my Name
  • How to edit date of birth on Facebook
  • Vidio Facebook
  • Reset my Ig Password
  • Enter date of Birth
  • Facebook book app Download
  • How to share to a group on Facebook
  • Call Instagram Help
  • Change the language on Facebook
  • Vacation countdown clock for Facebook
  • I can t deactivate my Facebook Account
  • Who Viewed My Instagram Account
  • Facebook Login In Mobile Phone l
  • How To Create A Poll On Facebook Profile
auth.signInWithPopup(provider).then(function(result) {
// Remember that the user may have signed in with an account that has a different email
// address than the first one. This can happen as Firebase doesn't control the provider's
// sign in flow and the user is free to login using whichever account he owns.
// Step 4b.
// Link to Facebook credential.
// As we have access to the pending credential, we can directly call the link method.
result.user.linkAndRetrieveDataWithCredential(pendingCred).then(function(usercred){
// Facebook account successfully linked to the existing Firebase user.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sign In Facebook Sign In

 Can You Do Polls On Facebook Pages. How to make polls on fb, Sign In Facebook Sign In     No comments   

This summary is not available. Please click here to view the post.
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Older Posts Home
How to Install Facebook Marketplace Near Me App

How to Create a Facebook Business Page

How to Completely Delete Facebook Search History

How to Sign in or Login Instagram with Your Facebook

Marketplace Facebook Buy and Sell within Local Community – Marketplace Facebook Buy Sell App

How to Deactivate FB Account Temporarily on Facebook

How to Find Blocked Facebook List to Unblock blocked Friends

How to Use the “Near Me Friends” Facebook Feature

FB Customer Care Center & Email Help Supports Contact Addresses

How to Install & Play the Facebook Farmville Games
How to Install Facebook Marketplace Near Me App

How to Create a Facebook Business Page

How to Completely Delete Facebook Search History

How to Sign in or Login Instagram with Your Facebook

Marketplace Facebook Buy and Sell within Local Community – Marketplace Facebook Buy Sell App

How to Deactivate FB Account Temporarily on Facebook

How to Find Blocked Facebook List to Unblock blocked Friends

How to Use the “Near Me Friends” Facebook Feature

FB Customer Care Center & Email Help Supports Contact Addresses

How to Install & Play the Facebook Farmville Games

Blog Archive

  • ▼  2019 (5)
    • ▼  July (5)
      • Selling Via Facebook Marketplace - Selling stuff o...
      • Facebook Buy and Sell – Facebook Buy and Sell Mark...
      • Link Facebook to Instagram – Login Instagram From ...
      • Facebook Marketplace Buy And Sell | Join Marketpla...
      • Facebook Marketplace - Facebook Online Marketing
  • ►  2018 (2310)
    • ►  December (2)
    • ►  November (181)
    • ►  October (197)
    • ►  September (1165)
    • ►  August (665)
    • ►  July (100)

Copyright © Basic Facebook Guide