Skip to content

Commit

Permalink
Rename module name.
Browse files Browse the repository at this point in the history
  • Loading branch information
leeqiang committed Oct 28, 2013
1 parent efa2bde commit 32dbb4e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
@@ -1,18 +1,18 @@

Tencent API V3 - Nodejs SDK
Tencent API V3 - Nodejs SDK for QQGroup
===========

##Install
```
npm install openapiv3
npm install qun
```

##How To Use
```
var API = require('openapiv3');
var OpenAPI = new API(appId, appKey, serverIp);
var QunApi = require('qun');
var Qun = new QunApi(appId, appKey, serverIp);
OpenAPI.call(apiPath, {}, 'get', 'http', function(result){
Qun.call(apiPath, {}, 'get', 'http', function(result){
// method and protocol is optional, default 'get', 'http',
// return object
})
Expand Down
12 changes: 8 additions & 4 deletions package.json
@@ -1,18 +1,22 @@
{
"name": "openapiv3",
"version": "0.1.5",
"name": "qun",
"oldname": "openapiv3",
"version": "0.1.6",
"author":{
"name": "Lee qiang",
"email": "qiang@teambition.com"
},
"keywords":[
"qq open api v3",
"openapi",
"teambition"
"teambition",
"qq qun",
"qqgroup",
"qun"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/leeqiang/Nodejs-SDK-OpenAPIV3.git"
"url": "https://github.com/leeqiang/node-qqqun.git"
}
}

0 comments on commit 32dbb4e

Please sign in to comment.