This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
<title>See own Albums with big photos</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> | |
<script src="http://connect.facebook.net/en_US/all.js"></script> | |
<script> | |
$(document).ready(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.post("/facebookapp/tgNotifier/postToPage.php", {a:'aa', b:'bb'}, | |
function(data){ | |
console.log(data); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From a7add60561ba31e4f18eee5cbf62404cc9ebc18e Mon Sep 17 00:00:00 2001 | |
From: Nat <[email protected]> | |
Date: Sun, 10 Oct 2010 17:44:02 +0700 | |
Subject: [PATCH] Initial django project | |
--- | |
manage.py | 11 +++++++ | |
settings.py | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
urls.py | 16 ++++++++++ | |
3 files changed, 123 insertions(+), 0 deletions(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FB.Array.forEach(album_detail, function(i, v) { console.log(i, v); }); | |
jQuery.each(album_detail, function(i, v) { console.log(i, v) }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Using Graph API | |
**/ | |
FB.api('/134478319934542/feed?limit=9999', function(data) { | |
console.log(data.data.length) | |
$('body').html(''); | |
var line; | |
var uid; | |
FB.Array.forEach(data.data, function(resp) { | |
if(resp.likes > 20) { |
OlderNewer