Guest User

Untitled

a guest
Mar 13th, 2014
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <title></title>
  5.     <meta charset="utf-8">
  6.     <meta name="description" content="">
  7.     <meta name="robots" content="index, follow">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9.     <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  10.     <script type="text/javascript" src="//connect.facebook.net/en_US/all.js"></script>
  11.  
  12.     <script type="text/javascript">
  13.         $(document).ready(function () {
  14.             FB.init({ appId: 1234567890, status: true, cookies: true, xfbml: false, frictionlessRequests: true });
  15.         });
  16.  
  17.         function Test() {
  18.             FB.ui({ method: 'apprequests', message: 'My Great Request' }, CallbackFunction);
  19.         }
  20.  
  21.         function CallbackFunction(response) {
  22.             alert(JSON.stringify(response));
  23.         }
  24.     </script>
  25. </head>
  26. <body>
  27.     <div id="fb-root"></div>
  28.     <a href="javascript:Test()">test</a>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment