Skip to content

Instantly share code, notes, and snippets.

@ralphmyw
ralphmyw / app.js
Created October 8, 2012 02:36
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;
}