GitXplorerGitXplorer
l

fb-sdk

public
2 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
a836eccacccc0cc91f50cd4c3ae6dde251b8c771

Adds timeout to second api call

llukejacksonn committed 8 years ago
Unverified
f0f4c14a90f347bd3a59d7b398fe347e9b4179b6

1.0.3

llukejacksonn committed 8 years ago
Unverified
045f8cc65ced2747f5760ebb31d430604b9e0437

Adds readme and demo API calls

llukejacksonn committed 8 years ago
Unverified
828726121e07b49d0613597ede383bf53789a833

1.0.2

llukejacksonn committed 8 years ago
Unverified
67c9db1148c64729f03fdfb04f92472ef6327824

Adds load-script dep to package

llukejacksonn committed 8 years ago
Unverified
f3919aa3caaff4b811042721afaf36a2a69fe43c

1.0.1

llukejacksonn committed 8 years ago

README

The README file for this repository.
import FBSDK from 'fb-sdk';

const Facebook = FBSDK({
  appId: '<YOUR-APP-ID>',
  status: true,
  version: 'v2.7'
});

Facebook.api('/me', (response) => {
  console.log(response);
});

Facebook.api('/me?fields=friends', (response) => {
  console.log(response);
});