Skip to content

Instantly share code, notes, and snippets.

@ericblade
ericblade / app.js
Created September 10, 2012 15:11
LINE 非公式 API を使ってログイン
var LINE = require('./line.js');
var line = new LINE();
var email = 'your email';
var password = 'your password';
line.login(email, password, function(error, result) {
if (error) {
return;
}