freeCodeCamp/views/api/facebook.jade

36 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-11-27 04:32:33 +00:00
extends ../layout
block content
.page-header
h2
i.fa.fa-facebook-square(style='color: #335397')
| Facebook API
.btn-group.btn-group-justified
a.btn.btn-primary(href='https://developers.facebook.com/docs/graph-api/quickstart/', target='_blank')
i.fa.fa-check-square-o
| Quickstart
a.btn.btn-primary(href='https://developers.facebook.com/tools/explorer', target='_blank')
i.fa.fa-facebook
| Graph API Explorer
a.btn.btn-primary(href='https://developers.facebook.com/docs/graph-api/reference/', target='_blank')
i.fa.fa-code-fork
| API Reference
2014-01-17 21:24:33 +00:00
h2 /me
h4= me.name
h6 First Name: #{me.first_name}
h6 Last Name: #{me.last_name}
h6 Gender: #{me.gender}
h6 Username: #{me.username}
h6 Link: #{me.link}
h6 Email: #{me.email}
h6 Locale: #{me.locale}
h6 Timezone: #{me.timezone}
2014-01-17 21:24:33 +00:00
h2 List of my friends
ul.list-unstyled
for friend in friends
li
img(src='https://graph.facebook.com/#{friend.id}/picture?type=normal', width=30, height=30)
a(href='http://facebook.com/#{friend.id}') #{friend.name}