私は新しく、github API を試しています。基本的にユーザー情報をコンソールに記録するこの例を試しました。ただし、ノードを介して実行されているサーバーからの応答として返されることを望みます。以下にコードを示します。
"use strict";
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
// res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
var Client = require("github");
var github = new Client({
debug: true,
version: "3.0.0"
});
github.authenticate({
type: "basic",
username: "user",
password: "password"
});
github.user.get({}, function(err, res) {
console.log("GOT ERR?", err);
console.log("GOT RES?", res);
github.repos.getAll({}, function(err, res) {
console.log("GOT ERR?", err);
console.log("GOT RES?", res);
});
});
どうすればそれができますか?