Skip to main content

Is Our Personal Information Safe on Google, Facebook and LinkedIn?

A question came to my mind today when I saw a new message on Facebook indicating that to keep Facebook free, customized ads based on members interests will be shown on our profiles or dashboard.

Today as well I saw a suggested list of people that I might know on LinkedIn. One of them is a friend of mine that we have never exchanged an email or even connected on social media. This friend has 0 friends on his friends list so there is no common people between us. Same question came to my mind again. How the social media and search engines are able to make this semantic networks!

Google Search uses our search history to show results that might be of our interests, it also use the same information to show related ads. Google is a free search that we use and they make money out of the ads. It is a mutual benefit, we search for free and they make money from ads we see based on our search keywords.

Same scenario in Social Media, so Facebook and LinkedIn, and other Social Networks use the same concept to keep running and make profit.

So our profiles, friend lists, search history is used by second party and third party applications, applications that we know and application that we don't know. Security and Privacy policies change from time to time without previous notice this happened more than once on Facebook.

We need to think carefully before we publish anything on our walls or maybe before we search. We need to keep a private circle that no one can get into! Are we able to do so while we use the social media?

It is easy to analyse our interactions with social media and search engines, those analysis that made by intelligent robots and semantic tools are not available to us, it is available to parties that we don't know about! who could access these information? Why? Who gives the permit?

Many questions that we have no answers to! We can't even delete the data we published! We can't remove our Facebook account!

We have to be careful and understand the side effects that we could face out of publishing sensitive data about ourselves and what we do. 

Comments

Popular posts from this blog

Coldfusion Facebook Graph API publish to your wall and your friends walls

In this tutorial we will learn by full coldfusion Graph API code example how to publish on your wall and your friends walls. This application uses new oauth authentication method. The code is divided into four files: we will first start with a file called index.cfm: <cfoutput>         <!--- Your FB application IDS --->       <cfset api_key = ""/>     <cfset secret_key = ""/>     <cfset appID = ""/>     <!--- create a connection to the fb graph cfc --->     <cfset graphCFC = createObject("component", "graph").init(#appID#, #api_key#, #secret_key#) />     <!--- If user is authenticated or his access token is set create a cookie --->        <cfif not isdefined("cookie.access_token") and isdefined("url.access_token")>         <cfset cookie.acce...

Implementation of Facebook Graph API in Coldfusion

Facebook has launched a new FB API called Graph that simplifies FB applications development, the new Graph API allows website owners to create Single Sign On (SSO) with Facebook and allow websites owners to be able to import a lot of users information but after their permissions. The code below written in Coldfusion gives an example on how to Create FB login/logout button and then how to retrieve the created cookie, and use it for further development:     <body>   <cfoutput>     <!--- Your FB application IDS --->     <cfset api_key = "XXXXXXXXXXXXX"/>     <cfset secret_key = "XXXXXXXXXXXXXX"/>     <cfset appID = "XXXXXXXXXXXXXX"/>     <!--- Facebook login/logout button --->     <p><fb:login-button perms="email,user_birthday" autologoutlink="true"></fb:login-button></p>     <!--- Facebook login/logo...

The New Facebook Wall Publishing method Stream.publish

As recently facebook stopped supporting the feedstory publishing method to publish news on users wall and application developers from now on can't create feed templates. Facebook released a new methods to do so which are: FB.Connect.streamPublish stream.publish Facebook.streamPublish I figured out those new methods when I was building a new facebook application yesterday to predict who will win the soccer match between Egypt and Algeria tonight. It took me sometime to succeed in publishing the story on the wall, so I will share with you my experience and how I solved it out in Coldfusion. As I build my applications using the work of Andrew Duckett who created the Facebook Rest Client Component , I will start from FacebookFBMLCLient.cfc file which contains the methods that communicates with facebook APIs. As I have used one of the three methods above which sounded the best as I guess, this example will be based on stream.publish method. The first step is to add the following method...