2013年2月19日
摘要: 调用http://open.weibo.com/wiki/OAuth2/access_token这个接口看文档是HTTP请求方式POST请求参数...省略....用node现写个个https的client 模拟post数据过去 var options = { hostname: 'api.weibo.com', port: 80, path: api, method: 'POST'};req = http.request(options , function(){...})req.write(data)req.end()第一个报错socket hang... 阅读全文
posted @ 2013-02-19 16:58 雨弓 阅读(764) 评论(2) 推荐(0) 编辑