Click here whenever you're ready
css
Rabu, 28 Agustus 2013
Facebook Album Stealer
Click here whenever you're ready
Senin, 26 Agustus 2013
Get Long Lived Token
As we all know, on December 5, 2012 Facebook has decided to remove the offline_access
permission and has introduced a concept called long-lived
access tokens which last a maximum of 60 days.
To get Long-lived Access Token from your own Facebook Application
, This what you'll need to set up from your App Dashboard:
If you're not sure about this tool result, Use Facebook Developers Access Token Debugger to test token expiry.
Senin, 08 Juli 2013
IDs 9 July 2013
Yang MC BANCI GILA LO !!. Siang Teman Teman sekarang gw mau share IDs 9 JULI 2013. IDs ini buatan saya sendiri Lumayan lah, IDs ini berjumlah 10+ semoga saja masih Work IDs-nya.
|
Tutorial
- Buka massfollow
- copy IDs tadi
- isikan nama pengguna twitter agan contoh "@EnggarOfficial" tulis nya tanpa "@" jadi "EnggarOfficial".
Rabu, 19 Juni 2013
Bookmarklets Collection
What are Bookmarklets?
A bookmarklet is a useful bit of javascript code stored in a bookmark, used like a tool on a toolbar. You can click a bookmarklet to do important things like: highlight search terms, look information up, block ads or auto invite all your facebook friend to your group.
- Google Chrome.
- Press [Ctrl][Shift][B] to bring down your Google Chrome bookmark bar.
- Drag-and-drop the bookmarklet links below into your bookmark bar, or Other bookmarks folder.
- You are done! Now, when you visit a page, just click on the bookmarklet you want to use.
- Firefox.
- Press [Ctrl][B] to show your Firefox bookmark panel.
- Drag-and-drop the bookmarklet links below into your bookmark bar.
- You are done! Now, when you visit a page, just click on the bookmarklet you want to use. Works just like toolbar but without slowing down the browser.
- Invite All Facebook Friends to a Group ( pure; no gid insertion )
Drag the bookmarklet link above into your bookmark bar, Go to your Facebook Group page, and then click the bookmarklet to invite all your friends into that group. - Index of Folder to URLs
It will lot more easier to explain this with an example. So try this: Drag the bookmarklet link above into your bookmark bar, Go to Click this link for an example, and then click the bookmarklet. Now you have the full links listed :D you may Select All those links and then upload to your new facebook album using Facebook Photo upFlood :P
Bikin Notif Pengunjung ala Facebook diBlog (versi Google Script)
Udah gak usah dijelasin lagi kali kayanya ya, noh tuh kan contonya (kalo masih) ada dipojok kiri bawah.
Dulu di Blog yang lama juga udah pernah dishare scriptnya kalo gak salah, tapi emang yang itu
DataBase untuk penyimpanan data pengunjung-nyamasih pake Feed dari Facebook Page, nah kalo yang sekarang udah dipindah pake ScriptDB-nya Google Script. |
Sebenernya kalo dibilang beda
juga gak jauh-jauh amat kayanya, antara nyimpen sama ngambil datanya juga tetep pake API, cuman emang kalo ScriptDB-nya Google Script gak butuh Access_token, tapi kalo soal privacy data sih tetep aja public open; semua orang bisa access read/write.
ganjelandari Blog Notif yang sekarang ini:
- Apakah ada/Berapa
limit penyimpanan
dari ScriptDB ini. - Masih suka kepentok masalah
Limit Eksekusi Script
, jadi kalo pengunjung blognya rame, butuh lebih dari satu ScriptDB. - Belum ketemu gimana caranya biar
write access
ke-ScriptDB hanya bisa dari satu subdomain saja.
ScriptDb
Saving Data
function saveToDB(){ var db=ScriptDb.getMyDb(); var whatToSave={ visitor:{ id:"4", name:"Zuck", page_title:"AingCreations", page_uri:"http://aingcreations-reborn.blogspot.com/", action:"viewed", browser:"Firefox 10", time:"2013-05-20T17:11:45+0000" } }; db.save(whatToSave); }
Collecting Data
function collectDB(){ var visitors=[]; var count=0; var limiting=5; var db=ScriptDb.getMyDb(); var whatToCollect={visitor:db.anyValue()}; var searchOnDB=db.query(whatToCollect); while(searchOnDB.hasNext()){ var fromDB=searchOnDB.next(); visitors.push(fromDB.visitor); count++; if(count==limiting){break} } var Lol="\nFound: "+visitors.length+" Visitors\n"+JSON.stringify(visitors,null," "); Logger.log(Lol); }
Modifying Data
function modifDB(){ var db=ScriptDb.getMyDb(); var whatToModify={visitor:{id:"4"}}; var modifPart={ partName:"time", partVal:"2013-06-10T00:00:00+0000" } var searchOnDB=db.query(whatToModify); while(searchOnDB.hasNext()){ var whatToSave=searchOnDB.next(); whatToSave.visitor[modifPart.partName]=modifPart.partVal; db.save(whatToSave); } }
Deleting Data
function dellDB(){ var db=ScriptDb.getMyDb(); var whatToDell={visitor:{id:"4"}}; var searchOnDB=db.query(whatToDell); while(searchOnDB.hasNext()){ db.remove(searchOnDB.next()); } }
ContentService
published as a web app, the special callback functions
doGet()
and doPost()
are invoked whenever a request is made to the script's URL. The ContentService can be used to return raw textual content. This allows you to write scripts that act as services, responding to GET and POST requests and serving data of various
mime-types.
Codes at Google Script
Publishing as a Web App
Testing
- No Parameters
- https://script.google.com/macros/s/ ... /exec
- Wrong Parameters
- https://script.google.com/macros/s/ ... /exec?naonnya=euy
- Missed Parameters
- https://script.google.com/macros/s/ ... /exec?simpan=euy&id=4
- Collecting Data
- https://script.google.com/macros/s/ ... /exec?ambil=euy
Getting visitor facebook ID
The important thing about this Blog Notif
is visitor facebook ID. We can get this ID by connecting our blog to facebook or better known as Facebook Connect.
I'm not writing yet
about this, but you may still learn it from http://developers.facebook.com/ or you may analyze this blog source script if you want :)
By knowing our visitor facebook ID, then we can fetch more information about our visitor from facebook, such as their profile photo, locale language, gender etc.