Skip to content

Latest commit

 

History

History
70 lines (53 loc) · 1.94 KB

README.md

File metadata and controls

70 lines (53 loc) · 1.94 KB

#Accounts Facebook Cordova

Join the chat at https://gitter.im/buildhybrid/platform

** this package is an upgrade to mrt:accounts-facebook-cordova (https://atmospherejs.com/mrt/accounts-facebook-cordova) and it implements Facebook SDK 4 + API 2.4

This packages replaces the accounts-facebook package. It works with cordova-plugin-facebook4 when using cordova and falls back to the facebook package when in a browser.

Platforms Tested

  • iOS
  • Android

Current status: Login works great! Working on abstracting the graph api calls so they work from both native sdk or http request .. although it may be better to just stick with http.

Installation / Setup

Requirements

================

Package Installation
meteor add btafel:accounts-facebook-cordova

Note: For testing you can also add accounts-ui package.

================

Meteor settings file (settings.json)
{
  "facebook": {
    "appId": "[app_id]",
    "secret": "[app_secret]"
  },
  "public": {
    "facebook": {
      "permissions": [
        "basic_info", 
        "user_interests", 
        "user_activities", 
        "read_friendlists"
      ]   
      "profileFields": [
        "name",
        "gender",
        "location"
      ]   
    }
  }
}

================

Cordova Setup Guide

Refer to the phonegap-facebook-plugin readme

Final Notes

Running your app with settings
meteor --settings settings.json

================

If you want more features than this provides, file an issue. Feature requests/contributions are welcome.