0.0.2 • Published 12 years ago

likegate v0.0.2

Weekly downloads
11
License
-
Repository
github
Last release
12 years ago

likegate

Small server-side validation/info for Facebook canvas apps.

Note: doesn't currently validate whether the request if from within Facebook or not, will be adding this soon though.

Installation

npm install likegate

Usage

var gate = require('likegate');

http.createServer(function(req, res) {
	if (req.method == 'POST') {
		gate(req, function(err, fields) {
			console.log(fields.liked); // `true` if the user has liked the page
			console.log(fields.admin); // `true` if the user is an admin
		});
	} else {
		res.end('Should be a POST request');
	}
});
0.0.2

12 years ago

0.0.1

12 years ago