Page 125 - การโปรแกรมเว็บ
P. 125

เอพไี อบนเว็บ 12-113
แนวตอบกิจกรรม 12.2.2

       1. การสรา้ งเว็บโปรเจคด้วย Maven หากต้องการใช้เอพีไอ com.restfb มีวธิ ีดังน้ี
            -	 ระบุ dependencies ในไฟล์ pom.xml

    <dependency>
   	 <groupId>com.restfb </groupId>

           <artifactId>restfb</artifactId>
           <version>2.9.0</version>
    </dependency>

            - ในคลาสทม่ี ีการเรยี กใช้งานกับทางเฟซบุก๊ ใหท้ ำ� การ import com.restfb
   import com.restfb.DefaultFacebookClient;
   import com.restfb.FacebookClient;
   import com.restfb.Version;
   import com.restfb.types.User;

       2.	 หากตอ้ งการใหห้ นา้ เวบ็ มปี มุ่ ลอ็ กอนิ ของเฟซบกุ๊ แสดงดงั ภาพ ใหเ้ ลอื กประเภทปมุ่ เปน็ data-
button-type="login_with"

  <div class="fb-login-button" data-size="large" data-button-type="login_with" ></div>
       3.	 แกไ้ ขคลาส ดังนี้
            loginController.jsp
            User_Profile.java
            Get_User_Details.java
            ที่ loginController.jsp เพ่ิมการแสดงผลขอ้ มลู อีเมล
   120   121   122   123   124   125   126   127   128