Code Monkey home page Code Monkey logo

think-work-wechat's Introduction

think-work-wechat

NPM version Downloads

Install

npm install think-work-wechat

How to use

init

方法1

src/common/bootstrap/global.js 内写入

var workapi = require('think-work-wechat');

global.workwechat = new workapi({
    token: 'xxxxxxxxxxxxxxx',
    corpid: 'wx1234567890abcdef',
    appsecret: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
    encodingAESKey: '1234567890abcdefghijklmnopqrstuvxyz12345678',
    AESKey: '1234567890abcdef',
    iv: '1234567890123456',
    pathname: 'api'
});

src/common/bootstrap/middleware.js 内写入

think.middleware('workmid', workwechat.middle);

src/common/config/hook.js 内写入

export default {
    request_begin: ["workmid"],
    payload_parse: ["workmid"]
}

方法2

src/common/bootstrap/global.js 内写入

var workapi = require('think-work-wechat');
global.workwechat = new workapi();

src/commot/config/workwechat.js 内写入

'use strict';
/**
 * workwechat config
 */
export default {
    token: 'xxxxxxxxxxxxxxx',
    corpid: 'wx1234567890abcdef',
    appsecret: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
    encodingAESKey: '1234567890abcdefghijklmnopqrstuvxyz12345678',
    AESKey: '1234567890abcdef',
    iv: '1234567890123456',
    pathname: 'api'
};

src/common/bootstrap/middleware.js 内写入

think.middleware('workmid', workwechat.middle);

src/common/config/hook.js 内写入

export default {
    request_begin: ["workmid"],
    payload_parse: ["workmid"]
}

各种接口

成员管理

let user_info = {
   "userid": "zhangsan",
   "name": "张三",
   "english_name": "jackzhang"
   "mobile": "15913215421",
   "department": [1, 2],
   "order":[10,40],
   "position": "产品经理",
   "gender": "1",
   "email": "[email protected]",
   "isleader": 1,
   "avatar_mediaid": "2-G6nrLmr5EC3MNb_-zL1dDdzkd0p7cNliYu9V5w7o8K0",
   "telephone": "020-123456"
   "extattr": {"attrs":[{"name":"爱好","value":"旅游"},{"name":"卡号","value":"1234567234"}]}
}
let new_user = await workwechat.user.create(user_info);
//OR
workwechat.user.create(user_info)
.then(function(result) {
  console.log(result);
});

读取成员

let one_user = await workwechat.user.get(userid);
console.log(one_user);
//OR
workwechat.user.get(userid)
.then(function(one_user) {
  console.log(one_user);
});

其他接口说明待完善,作者很懒,不要期待。

LICENSE

MIT

think-work-wechat's People

Contributors

mlinquan avatar

Stargazers

xixihaha avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.