forked from alexfrancisross/FacebookWebDataConnector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
userfeedwebconnect.html
68 lines (54 loc) · 2.75 KB
/
userfeedwebconnect.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
<!--******************************************************************************************************/
/** Facebook User Feed Web Connector For Tableau **/
/** Users Feed Data From FaceBook API. Each record is a post on the user's feed **/
/** Author Alex Ross **/
/** Version 1.0 **/
/*******************************************************************************************************-->
<head>
<!-- Comment the following line in and the line after out if you are not connected to the internet -->
<script src="js/jquery.js" type="text/javascript"></script>
<!-- You'll need to reference this files. It's not on the public web yet (will be soon) -->
<script src="js/tableauwdc-1.1.0.js" type="text/javascript"></script>
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>-->
<script src="js/userfeedwebconnect.js" type="text/javascript"></script>
<script src="//connect.facebook.net/en_US/all.js"></script>
<meta http-equiv="Cache-Control" content="no-store" />
<div id="fb-root"></div>
<!-- Title Core CSS -->
<title>Facebook User Feed Web Data Connector</title>
</head>
<body>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/stylish-portfolio.css" rel="stylesheet">
<div align="center">
<!-- Header -->
<header id="top" class="header">
<div class="text-vertical-center">
<h1>Facebook User Feed <p>Web Data Connector</p></h1>
<br>
<div class="lead" id="status">
Click on Below Image to login:
<br/>
<img src="img/LoginWithFacebook.png" style="cursor:pointer;" onclick="Login()" />
</div>
<br/>
<div id="message">
<!-- About -->
<section id="about" class="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<p class="lead">This Web Data Connector is Powered By The <a target="_blank" href="https://developers.facebook.com/">Facebook API</a>.</p>
</div>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
</div>
</div>
</body>
</html>