dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Daniel Qian b8d011e73e issue #105 WxCpService.oauth2buildAuthorizationUrl方法设计错误 10 vuotta sitten
weixin-java-common issue #107 请给实体类加上Serializable 10 vuotta sitten
weixin-java-cp issue #105 WxCpService.oauth2buildAuthorizationUrl方法设计错误 10 vuotta sitten
weixin-java-mp issue #107 请给实体类加上Serializable 10 vuotta sitten
.gitignore 微信企业号 10 vuotta sitten
.travis.yml add travis support 10 vuotta sitten
LICENSE add LICENSE 10 vuotta sitten
README.md add travis status 10 vuotta sitten
pom.xml upgrade to 1.1.2-SNAPSHOT 10 vuotta sitten

README.md

weixin-java-toolsBuild Status

微信公众号、企业号Java SDK。

详细文档请看 wiki

Quick Start

如果要开发公众号(订阅号、服务号)应用,在你的maven项目中添加:

<dependency>
  <groupId>me.chanjar</groupId>
  <artifactId>weixin-java-mp</artifactId>
  <version>1.1.1</version>
</dependency>

如果要开发企业号应用,在你的maven项目中添加:

<dependency>
  <groupId>me.chanjar</groupId>
  <artifactId>weixin-java-cp</artifactId>
  <version>1.1.1</version>
</dependency>

SNAPSHOT版

本项目的BUG修复和新特性一般会先发布在*-SNAPSHOT版里供大家预览,如果要使用*-SNAPSHOT版,则需要在你的pom.xml中添加这段:

<repositories>
  <repository>
      <snapshots />
      <id>sonatype snapshots</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  </repository>
</repositories>

升级指南