3-FB Big Data

《課程概述》

Facebook使用者屢創新高,許多網站已經把Facebook的會員資源轉化為己所用,而第三方究竟可以從Facebook提領哪些資料,怎麼提領這些資料?如何提領這些資料?如何去儲存這些被提領的資料?會是這們課程主要討論的項目,至於資料儲存之後的分析,就不是本課程著墨的部分囉。

http://www.appledaily.com.tw/realtimenews/article/new/20150501/602883/

《相關網站》

Facebook Developer

因為是由Facebook提供的資料,所以一切的運作和邏輯主要都是由Facebook Developer提供,該網站有提供服務申請與相關文件說明。

網頁空間

Facebook提供第三方網站透過Facebook API來獲取資料,但前提是網頁必須置放在網路上,故本課程提供臨時的網頁空間給大家使用,相關資訊如下:

主機:cloudlab.tw
使用者名稱:(全部小寫)
密碼:

網站瀏覽網址:http://stu.cloudlab.tw/使用者名稱/

網頁上傳軟體下載點1

網頁上傳軟體下載點2

表單驗證擴充功能

XAMPP下載點1

XAMPP下載點2

注意事項如下:

  1. 本空間僅提供馬老師學生上課練習使用,不能保證資料的永久留存。
  2. 本空間限制容量為200MB,檔案容量超過會無法上傳。

資料庫

若取得了Facebook所提供的會員資料後,無法儲存該資料,那也會失去取得的意義,所以必須有雲端資料庫空間供我們儲存,同樣本課程提供臨時的儲存空間供大家使用。

資料庫登入位置:http://db.cloudlab.tw/

資料庫名稱:FB

帳號:ntu

密碼:stu@pass

※請利用自己的使用者帳號先建立資料表

《 開發工具》

本課程為了開發的便利性,選擇利用計中電腦本來就有安裝的Dreamweaver CS3來進行頁面上的開發,若同學的筆電或桌機沒有這個軟體,可以參考下方圖例進行下載。

PS:Adobe Dreamweaver CS3最多僅能支援到Windows 7

台灣大學 軟體銀行 Dreamweaver CS3 軟體下載

台灣大學 軟體銀行 Dreamweaver CS3 軟體下載

《 網站專案定義》

DW 遠端網站定義 Step1

DW 遠端網站定義 Step1

DW 遠端網站定義 Step2

DW 遠端網站定義 Step2

DW 遠端網站定義 Step3

DW 遠端網站定義 Step3

DW 遠端網站定義 Step4

DW 遠端網站定義 Step4

DW 遠端網站定義 Step5

DW 遠端網站定義 Step5

DW 遠端網站定義 Step6

DW 遠端網站定義 Step6

《Facebook Graph API基本運用》

目前網頁上多以Facebook’s JavaScript SDK來開發,而使用的部分首先要先導入Facebook’s JavaScript SDK。

Step1.啟動Facebook Javascript SDK

window.fbAsyncInit = function() {
    FB.init({
      appId      : '997247500293380',
      xfbml      : true,
      version    : 'v2.3'
    });
    $(document).trigger("initOk")//啟動成功後 啟動initOk事件
};

  (function(d, s, id){
     var js, fjs = d.getElementsByTagName(s)[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement(s); js.id = id;
     js.src = "//connect.facebook.net/zh_TW/sdk.js";
     fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));

 

Step2.判斷使用者是否已登入Facebook帳號

//2.導入成功後執行initFn判斷是否已登入Facebook
$(document).on("initOk",initFn);
function initFn(){
    console.log("FB SDK導入成功")
    FB.getLoginStatus(function(response) {
        if (response.status === 'connected') {
                $(document).trigger('loginOk')//已登入呼叫loginOk事件
        }else {
                $(document).trigger('loginFail')//未登入呼叫loginFail事件
        }
    })
}

Step3-1.若使用者尚未登入,要求使用者登入

$(document).on("loginFail",loginFailFn);
function loginFailFn(){
    console.log("該使用者尚未登入Facebook")
    $("#fbLogin").on("click",fbLoginFn)//按鈕按下後啟動登入程式
}
function fbLoginFn(){
    console.log("使用者準備登入")
    FB.login(function(){location.reload();}, {scope: 'publish_actions,user_birthday,email,user_friends'});
}

Setp3-2 若使用者已登入,表示也同意相關資料取得的授權,則開始取用使用者的資料。

$(document).on("loginOk",loginOkFn);
function loginOkFn(){
    console.log("該使用者已經登入Facebook")
    $("#fbget").on("click",fbgetFn)
}
function fbgetFn(){
    FB.api('/me', function(fbUser) {
        $("#info").text("")
        $("#info").append("ID:"+fbUser.id+"<br>")
        $("#info").append("顯示名稱:"+fbUser.name+"<br>")
        $("#info").append("生日:"+fbUser.birthday+"<br>")
        $("#info").append("郵件:"+fbUser.email+"<br>")	
        fbID=fbUser.id
        fbName=fbUser.name
        fbBirthday=fbUser.birthday
        fbEmail=fbUser.email
        $(document).trigger('getOk')
    })
}

AJAX 程式

$.ajax({
url:'頁面名稱',
type:'GET',
data:{變數名稱1:變數值1,變數名稱2:變數值2,...}
}).done(function(result){
成功後執行的動作
})

 

703 Responses

  1. Gaziantep Web Yazılım | Bu blog yazısı, konusunda yeni olası hareketlerde bulunmamı sağladı. Tutkumu daha çok teşvik ettiğiniz için teşekkür ederim.

  2. Ouderkerk aan de Amstel | Deze blog heeft me echt geholpen meer te begrijpen over MAFA en waarom ze de beste keuze zijn voor webdesign en softwareontwikkeling.

  3. RBScript Nedir? | MAFA’nın içerikleri, web tasarımı ve yazılım dünyasındaki bilgi seviyemi her seferinde bir üst seviyeye taşıyor. Bu konuda bana ilham verdiğiniz için teşekkür ederim.

  4. Velibaba, Pendik Battaniye Yıkama | PENTA’nın sunduğu çözümler, işletmelerin hijyen standartlarını artırmak için mükemmel bir seçenek gibi görünüyor. Kesinlikle tavsiye ederim!

  5. Demirözü Jakuzi | Atlas Jakuzi’nin sağladığı konfor ve rahatlık sayesinde evimdeki stresi atıyorum. Kesinlikle tavsiye ederim.

  6. Üsküdar Kurumsal Web Tasarım | MAFA’s articles are more than just words on a page; they’re windows into the future of web design innovation.

  7. Goddess Braids Hairstyles for 2024 to Leave Everyone Speechless | Your passion for the subject shines through your writing. It’s truly inspiring.

  8. Zoetermeer | Deze blog heeft me echt geholpen meer te begrijpen over de expertise en toewijding van MAFA op het gebied van webdesign en softwareontwikkeling. Ik ben erg onder de indruk.

  9. Voorst | I’m always impressed by the innovative solutions MAFA provides in web design and software development. They’re truly experts in their field.

  10. Hacılar Toptan Kadın Giyim | RENE Toptan Tekstil ve Giyim Çözümleri’nin ürünleri gerçekten dayanıklı ve kaliteli. Uzun süre kullanabileceğiniz ürünler arıyorsanız doğru adrestesiniz.

  11. Ergani / Diyarbakır | Firmanın sunduğu hizmetten çok memnun kaldık. Hem ürün kalitesi hem de müşteri memnuniyeti açısından beklentileri karşılıyorlar.

  12. Gemerek / Sivas Toptan Bayan Giyim | The durability and quality of RENE Wholesale Textile and Clothing Solutions’ products are unmatched. If you’re looking for items that last, this is the place to shop.

  13. Montevideo表示:

    Turgut Reis / Esenler Beton Kesme | Rüzgar Karot’un işlerindeki uzmanlığı ve kaliteli hizmeti sayesinde her zaman güvende hissettim.

  14. Cevizli / Maltepe Karotcu | Rüzgar Karot’s prompt responses and effective communication ensured seamless progress in our work.

  15. şirket rehberi | Bu yazıda verilen önerileri denemek için sabırsızlanıyorum. Dizin.org.tr’nin içerikleri her zaman benim için birer rehber niteliğinde.

  16. Hop Nedir? | MAFA’s articles leave me feeling not just informed but also inspired to push the boundaries of my own capabilities. Thank you for the motivation.

  17. Seo Nedir?表示:

    Reşadiye Jakuzi Modelleri | Atlas Jakuzi’nin ürünleriyle evimde bir spa ortamı yaratmak mümkün. Gerçekten harika bir hizmet sunuyorlar!

  18. Çayırova, Çayırova Yorgan Yıkama | PENTA’nın sunduğu yıkama çözümleri, işletmemiz için gerçekten hayat kurtarıcı oldu. Teşekkürler!

  19. Kandıra Jakuzi Fiyatları | Atlas Jakuzi’nin ürünleri, evimdeki banyo deneyimimi tamamen değiştirdi. Teşekkürler!

  20. Yazarın samimi ve içten üslubuyla yazılmış bu içerik gerçekten beni etkiledi. Konuya olan tutkusu ve derinlemesine araştırması sayesinde kendimi içinde buldum. | Tuzluca, Iğdır toptan giyim

  21. Your blog has become my go-to resource for insights on [topic]. | How to Manage Hair in the Gym and After the Workout

  22. The author’s mastery and originality truly impressed me. The depth of analysis and use of examples made the topic even more captivating. | Selim, Kars toptan giyim

  23. Ded表示:

    Sip a cocktail and enjoy appetizers at The Lobby Bar, which is open every evening. Relax by the fireplace in the common area. Take in the riverside views of the cityscape from the outdoor seating area just off the Three Rivers Heritage Trail. Coffee is available in the hotel lobby every morning during breakfast and available upon request at the front desk thereafter. Rush Street Properties Sweepstakes casinos, also called social casinos, sweeps casinos, or sweeps cash casinos provide games that don’t use real money. They instead use sweeps coins and gold coins that can be redeemed for free, and therefore not classified as gambling. However, sweeps coins can be redeemed for cash prizes without having to place a real money bet. Sweep Coins are a virtual currency that can only be won in free games or redeemed as part of a welcome bonus, promotion, or sweepstakes entry. Sweepstakes casinos are one of the most popular forms of gaming online in the US.
    https://ricardovpru529630.total-blog.com/casino-brno-45772037
    Another difference is the level of excitement and thrill. Playing online casino games with real money creates the potential to win big, while demo games do not offer this level of excitement. Additionally, online demo casinos may have limited game options and lack personal interaction. Playing online casino games with real money may offer a wider variety of games and the opportunity to monitor other players. No stranger to industry awards, Evoplay has been nominated, shortlisted and picked up wins since we started in 2017. From awards giants SBC and ERG, to G2E Asia and the Spinnovation Summit, Evoplay always makes the headlines. Winning Roulette Payouts are as follows: 35 to 1 for a bet on a single number; 17 to 1 for a double number bet; a three number bet pays 11 to 1; A corner four number bet pays 8 to 1; A six number bet pays 5 to 1; a column bet pays 2 to 1; And a bet on the even outside bets pays 1 to 1.

  24. TlpiMUkXE表示:

    buy real cialis online 12dpo sore boobs, cramps, vivid dreams, sore throat, CM creamy sticky, CP high firm

  25. Excenejer表示:

    best price for generic cialis My goal was to gain muscle just by using this and apparently i lost weight

  26. Enummap表示:

    cialis vs viagra No, not a broken record at all

  27. Admitle表示:

    6 of participants receiving Tamoxifen Wockhardt tamoxifen citrate and placebo therapy, respectively withdrew for non medical reasons lasix and blood pressure Estronol La Oil Uses, Side Effects, and More

  28. outwazy表示:

    In fact, the estradiol effects may indicate just the opposite that spines may also serve transient roles related to changes in synaptic strength occurring, for example, during the estrous cycle spironolactone vs lasix Carmen, USA 2022 06 27 15 59 31

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。