Giter VIP home page Giter VIP logo

facebook-refresh-token's Introduction

facebook-refresh-token

npm-version

npm install -g facebook-refresh-token

Configuration

{
  "server": {
    "protocol": "http",
    "host": "dummy.com",
    "port": 3000
  },
  "app": {
    "key": "",
    "secret": "",
    "scope": []
  },
  "browser": {
    "cookie": ""
  }
}

OAuth Application

  1. Create OAuth application on developers.facebook.com (in case you don't have one already)
  2. Set the app's Site URL to http://dummy.com:3000 (or whatever else you want)
  3. Add 127.0.0.1 dummy.com to your hosts file

On your Workstation

  1. Make sure you are logged in with your primary Facebook account that you are using regularly (this module relies on your browser cookie)
  2. Create config.json file and copy/paste the above configuration data structure in it
  3. Configure the server
  • protocol, host and port should match your app's Site URL
  • key App ID
  • secret App Secret
  • scope specify any scopes required by your app (optional)

Connect

  1. Start the server facebook-refresh-token --config config.json --connect
  2. Navigate to http://dummy.com:3000 in your browser
  3. Open up the Developer Tools and select the Network tab, make sure Preserve log is checked
  4. Navigate to http://dummy.com:3000/connect/facebook and authenticate as usual
  5. Take a look at the authorization request in the Network tab and copy the request's cookie header value to the above configuration

On your Server

  1. Add 127.0.0.1 dummy.com to your hosts file
  2. Deploy the config.json file to your server

Refresh

  1. Every time you want to update your access token execute:
facebook-refresh-token --config config.json --refresh

The refreshed access token is logged out to the console. This makes it easy to pipe this script's output to another one.

For example on Linux servers you may want to configure the cron daemon to refresh your access token at 12:00AM on the first day of every 3 months:

0 0 1 */3 * facebook-refresh-token --config config.json --refresh > access_token

Reconnect

Keep in mind that if you ever log out manually or due to prolonged inactivity of your Facebook account your cookie will be lost.

  1. In this case execute the steps outlined in the Connect section on your workstation.
  2. Update your server's config.json file with your new cookie value.

facebook-refresh-token's People

Contributors

simov avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.