Facebook Javascript SDKでとりあえず
なにか作るときの雛形。
1 2 3 4 5 6 7 8 9 10 11 12
| <div id="fb-root"> <script src="http://connect.facebook.net/ja_JP/all.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script> <script> FB.init({ appId : 'app id' , status : true , cookie : true , xfbml : true , oauth : true // OAuth2.0対応が必須になったので追記 }); </script>
|