2013-11-26 23:32:33 -05:00
|
|
|
extends ../layout
|
|
|
|
|
|
|
|
block content
|
|
|
|
.page-header
|
2013-12-12 02:21:39 -05:00
|
|
|
h2
|
|
|
|
i.fa.fa-facebook-square(style='color: #335397')
|
2013-12-07 22:15:11 -05:00
|
|
|
| Facebook API
|
2013-12-12 02:21:39 -05:00
|
|
|
|
2013-12-07 22:15:11 -05:00
|
|
|
.btn-group.btn-group-justified
|
2014-02-12 14:24:31 -05:00
|
|
|
a.btn.btn-primary(href='https://developers.facebook.com/docs/graph-api/quickstart/', target='_blank')
|
2013-12-07 22:15:11 -05:00
|
|
|
i.fa.fa-check-square-o
|
|
|
|
| Quickstart
|
2014-02-12 14:24:31 -05:00
|
|
|
a.btn.btn-primary(href='https://developers.facebook.com/tools/explorer', target='_blank')
|
2013-12-07 22:15:11 -05:00
|
|
|
i.fa.fa-facebook
|
|
|
|
| Graph API Explorer
|
2014-02-12 14:24:31 -05:00
|
|
|
a.btn.btn-primary(href='https://developers.facebook.com/docs/graph-api/reference/', target='_blank')
|
2013-12-07 22:15:11 -05:00
|
|
|
i.fa.fa-code-fork
|
|
|
|
| API Reference
|
2014-01-17 16:24:33 -05:00
|
|
|
|
2014-02-12 14:24:31 -05:00
|
|
|
h2 /me
|
2014-02-12 15:06:22 -05:00
|
|
|
img(src='https://graph.facebook.com/#{me.id}/picture?type=large', width='90', height='90')
|
2013-12-07 22:33:49 -05:00
|
|
|
h4= me.name
|
2014-02-12 14:24:31 -05:00
|
|
|
h6 First Name: #{me.first_name}
|
|
|
|
h6 Last Name: #{me.last_name}
|
|
|
|
h6 Gender: #{me.gender}
|
2013-12-07 22:33:49 -05:00
|
|
|
h6 Username: #{me.username}
|
2014-02-12 14:24:31 -05:00
|
|
|
h6 Link: #{me.link}
|
2013-12-07 22:33:49 -05:00
|
|
|
h6 Email: #{me.email}
|
2014-02-12 14:24:31 -05:00
|
|
|
h6 Locale: #{me.locale}
|
|
|
|
h6 Timezone: #{me.timezone}
|
2013-12-07 22:33:49 -05:00
|
|
|
|
2014-02-12 14:59:51 -05:00
|
|
|
h2 /me/friends
|
|
|
|
.row
|
2013-12-07 22:50:27 -05:00
|
|
|
for friend in friends
|
2014-02-12 14:59:51 -05:00
|
|
|
.col-xs-3.col-md-2
|
|
|
|
a.thumbnail(href='http://facebook.com/#{friend.id}')
|
|
|
|
img(src='https://graph.facebook.com/#{friend.id}/picture?width=150&height=150')
|
|
|
|
div.facebook-caption= friend.name
|