Skip to content

Instantly share code, notes, and snippets.

@vvakame
Created December 4, 2013 08:50
Show Gist options
  • Save vvakame/7784354 to your computer and use it in GitHub Desktop.
Save vvakame/7784354 to your computer and use it in GitHub Desktop.
とりあえずChatWorkのAPIを雑に叩けた。
var https = require('https');
var req = https.request({
host: "api.chatwork.com",
path: "/v1/my/status",
method: 'GET',
headers: {
"X-ChatWorkToken":"xxxxx"
}
},
function(res){
res.on("data", function(chunk){
process.stdout.write(chunk);
});
});
req.end();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment