Skip to main content

Social Networking with Facebook





This is a small guide in simple language that can help minimize the potential threats to your security and privacy on Facebook
Facebook developers keep on pushing codes every day. From UI updates to new features and new settings..Keeping up with Facebook's ever changing  landscape and  the way it affects the security and privacy of your account can be a challenge.
Here are few most common problems and it’s solution on Facebook for beginner s as well as advance users. 
I hope, you’ll find it useful.
Cheers!


I’ve been personally a victim of Facebook profile hacking few years ago. Someone from Egypt somehow accessed and edited my profile. Luckily, now Facebook have enough options to prevent or at least notify you before a major damage is done.

                Because of this option, whenever anyone else will login to your account by using a different machine from where you usually sign in, Facebook will immediately notify you by text message. You can even remotely sign out from your account using this feature.

Overview o
f Go to Account (Top Right) ->Account Settings ->In “Settings” tab,scroll down to select Account Security. And select appropriate option.




Whenever any of your friends is using Facebook application/ game, that application/game can take your personal information including your profile picture, bio and so on, even if you are not using it. (Eg: You must have noticed that sometimes when a friend uses an application  like My Top Friends, it is accessing your profile pic and other information without your consent and does annoying things like tagging your pic on it.


To prevent this, go to Account (top left corner)->Privacy Settings->Apps and Websites.
Click Edit Settings next to Info accessible through your friends, and uncheck any necessary boxes



 


You might have noticed that your Facebook profile shows “social ad” along with the action taken by your friends like “liking” it. Sounds like no harm, as long as your liking nice nifty pages but if there are things and pages that you want to like and do not want your friends to know about, take following action.


To make sure that your Facebook actions won't be associated with “social ad”,
i.Go to account(top left corner) ->Account Settingsand click the Facebook Ads tab.
 From the drop-down menu, choose either No one or Only my friends, depending on your preference.










We generally tend to add hell lot of applications and then we don’t care to remove them from this list. Result. Annoying updates and risk of allowing applications to send your data to third party (believe me, you won’t like this). So how to remove unwanted apps that you don’t want to use anymore?. Here’s the solution.





Go to Account->Privacy Settings->Applications and Websites.
Now,  next to Apps you selected, choose Edit Settings.
 Here, you ‘ll be able to see that which applications have been  authorized to interact with your account and when you authorized them, you can even  edit the settings or delete the application entirely.








Whenever someone Google or Bings your name, there are chances that your Facebook profile will be displayed. Good if you want to be found by your long lost friends and BAD when you are on Facebook and do not want to be found by your partner, boss or someone else.


Go to Account->Privacy Settingsand select “Edit your settings “under 'Apps and Websites' (located left bottom left). Click Edit Settings next to the last option, Public search, and uncheck the box to disable it.




We generally set our all albums as private but what about “Profile Pictures”, “Mobile Uploads”, “Wall Photos” ?. Recently I witnessed a clone profile of one of my friends. She had set privacy level to “only friends” except for “Profile Pictures”(by default Public) and someone took the picture. So how to completely protect your pictures?  Here’s the solution.



At the bottom of first section, you’ll find “Edit Album Privacy”. Select the appropriate album and set the privacy.




Posted By: Mudassir Malik (Mircrosoft Student Partner)
Website: Technirvanaa.wordpress.com

Comments

Popular posts from this blog

Characteristics of a Good Programming Language

Till now there are many high level languages which are very popular, and there are others, which could not become so popular in-spite of being very powerful. There might be many reasons for the success of a language, but one obvious reason is the characteristics of the language. Several characteristics believed to be important with respect to making a programming language good are briefly discussed below. Simplicity A good programming language must be simple and easy to learn and use. For example, BASIC is liked by many programmers only because of its simplicity. Thus, a good programming language should provide a programmer with a clear, simple and unified set of concepts which can be easily grasped. It is also easy to develop and implement a compiler or an interpreter for a programming language that is simple. However, the power needed for the language should not be sacrificed for simplicity. The overall simplicity of a programming language strongly affects the readability of the pr...

Angular 4 and Firebase Authentication: Email/Password

In our  previous  article we saw how to create authentication module using Google identity provider. Now we will see how to implement Email and Password authentication using Firebase. We will use Bootstrap form to create intuitive user interface for sign-up and login using Email and Password. Step 1: Create signUp component. ng generate component signUp Step 2: Create custom form in sign-up.component.html file. The result of above code: Step 3: Add two functions for creating the user and login using Email and Password in src/app/providers/AFAuth.ts file. Step 4: Call createUserWithEmailAndPassword function in service from sign-up.component.ts. Step 5: Update routing configuration in app.module.ts  to include signUp component. Step 6: Update Login form to have Bootstrap form. The result of the above code. Step 7: Enable Email/Password component in Firebas...

Angular 4 and Firebase Authentication: Setup

If you have come to this article, it means you are keen to learn new technology and that too Firebase. I love Firebase because it provides all basic but important features of any web application. Take for example, authentication, which is cumbersome and risky if not implemented with utmost care. And when we have the integration of Angular and Firebase, it becomes a lot easier for a developer to build such crucial modules in less time with minimal efforts. In this article we will create a simple Angular application using Firebase. I am going ahead with the understanding that you know the benefits of Firebase and have little knowledge about it. There are plenty of posts out on the web if you are behind. Step 1: Install Angular CLI (if not installed). npm install -g angular-cli Step 2: Create new Angular 4 project. By default now angular CLI will create Angular 4 project so you need not fret. ng new firebase-authentication Step 3: Check whether the ne...