SEO

September 18, 2010

Dali on Haute Couture and Puffy Shirts 1967

Po recommended

Salvador Dali videobituary™

Po recommended

Salvador Dali Wants Ursula Andress...FROZEN!

Salvador Dali Astrology, Paganini, Crayfish http://www.youtube.com/watch?v=lWqyGFI_F-w

Po recommended

Salvador Dali Astrology, Paganini, Crayfish

Dali Amanda Lear incompréhensible 1967 http://www.youtube.com/watch?v=_tO6IfpDzG0 http://post.ly/yEWv

Po recommended

(this is the one with the videos) whatgetsmehot videos - Youtube (new mirror site with snazzy pink banner i stole)

Videos de Youtube

whatgetsmehot

Le Magnum Force (French) PLUS Suzanne Somers - Magnum F ...

  • Duracion: 2:46
  • Votos: from people
  • Reproducciones:
  • Enviado por: limbsandthings1

Tags: Facebook Video  Film  Posterous Video  tits  Video  xhamster  youtube  posterous 

whatgetsmehot.posterous.com Le Magnum Force (French) Suzanne Somers - Magnum Force (topless in pool) Which word/phrase fits all the gaps in each set? (thanks for ... They think, [002] ss Resnik, and she gave it force, dramatic color and _____ . Mr. .... Ruger reports that on his recent _____...

10 Best French TV Commercials

  • Duracion: 4:9
  • Votos: from people
  • Reproducciones:
  • Enviado por: limbsandthings1

Tags: posterous 

whatgetsmehot.posterous.com 10 Best French Vintage TV Commercials Click image to play video ... mrjyn yt:quality=high limbsandthings1 youweirdtube

Bin Laden Animated to Death by Taiwanese NMA TV

  • Duracion: 1:14
  • Votos: from people
  • Reproducciones:
  • Enviado por: limbsandthings1

Tags: posterous 

whatgetsmehot.posterous.com Bin Laden Animated to Death by Taiwanese NMA TVClick image to play video ... mrjyn yt:quality=high limbsandthings1 youweirdtube

Po recommended

whatgetsmehot videos - Youtube (new mirror site with snazzy pink banner i stole)

Videos de Youtube

whatgetsmehot

Po recommended

Facebook is hard to 'LIKE' but this guy makes it easier

Some days ago facebook released their new graph api system to develop social sites more easily. Its really cool and I personally like the facebook's new graph api system. Facebook also updated their old facebook connect system and provided better way to integrate facebook connect feature, user authentication and calling facebook api from website.

In this article, I'll highlight javascript base

  1. Facebook connect authentication for websites
  2. How to use graph api
  3. How to show stream publish prompt and share prompt
  4. How to run FQL query using javascript
  5. How to set status using old legacy api calling by javascript

Here is the demo http://thinkdiff.net/demo/newfbconnect1/newconnect.php

fbconnect-demo

1. Facebook connect authentication

Firstly you've to setup a facebook application to get the application id. You can setup application from here. Or if you have already setup a facebook application then just copy the application id and replace with xxxxxxxxxxx.

01 <div id="fb-root"></div>
02 <script type="text/javascript">
03 window.fbAsyncInit = function() {
04 FB.init({appId: 'xxxxxxxxxxxxxx', status: true, cookie: true, xfbml: true});
05 };
06 (function() {
07 var e = document.createElement('script');
08 e.type = 'text/javascript';
09 e.src = document.location.protocol +
10 '//connect.facebook.net/en_US/all.js';
11 e.async = true;
12 document.getElementById('fb-root').appendChild(e);
13 }());

Just put this code in your html file after the body tag. This is the most efficient way to load the javascript SDK in your site. And in this way the sdk will load asynchronously so it does not block loading other elements of your page. Details of FB.init method.

And your html tag should be

1 <!DOCTYPE html>

Now we will use another method FB.Event.subscribe so that we can subscribe some events like login, logout, sessionChange. So modify the window.fbAsynInit and update by below code

01 window.fbAsyncInit = function() {
02 FB.init({appId: 'xxxxxxxxxxx', status: true, cookie: true, xfbml: true});
03  
04 /* All the events registered */
05 FB.Event.subscribe('auth.login', function(response) {
06 // do something with response
07 login();
08 });
09 FB.Event.subscribe('auth.logout', function(response) {
10 // do something with response
11 logout();
12 });
13  
14 FB.getLoginStatus(function(response) {
15 if (response.session) {
16 // logged in and connected user, someone you know
17 login();
18 }
19 });
20 };