npmモジュール「github」(https://github.com/ajaxorg/node-github/)を使用して、github apiを介してGistを作成しようとしています
私はこのコードを持っています
var gh = new GitHubApi({
version: "3.0.0"
});
gh.authenticate({
type: "oauth",
token: data.token
});
gh.user.get({}, function (err, data) {
console.log(err);
console.log(data);
var blob = {};
blob.repo = commitData.repo;
blob.user = commitData.user;
blob.content = commitData.content;
blob.encoding = commitData.encoding;
gh.gitdata.createBlob(blob, function (err, blob) {
console.log(err);
console.log(blob);
cb('failed');
});
});
問題は、 createBlob 関数がこれを受け取っていることです
{
defaultMessage: 'Internal Server Error',
message: 'socket hang up',
code: '500'
}
Heroku の無料インスタンスでアプリを実行しています (express に基づいています)。
どうもありがとう、私は何日もそれを解決していますが、まだうまくいきません。