-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ddbba6
commit 12a1957
Showing
32 changed files
with
323 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# 自检(checkUniversalLinkReady) | ||
|
||
> 此接口仅限IOS下使用 | ||
> | ||
> 此接口仅为了方便调试使用,生成环境请勿开启。 | ||
|
||
|
||
## 参数 | ||
|
||
无 | ||
|
||
|
||
|
||
## 示例 | ||
|
||
```javascript | ||
window.Wechat.checkUniversalLinkReady( | ||
function(res) { | ||
console.log('check universal link success:', res); | ||
}, | ||
function(err) { | ||
console.error(err); | ||
} | ||
) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 发票 | ||
# 选取发票(chooseInvoiceCard) | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 获取SDK版本(getSDKVersion) | ||
|
||
获取微信SDK版本号(非微信APP版本号) | ||
|
||
|
||
|
||
## 参数 | ||
|
||
无 | ||
|
||
|
||
|
||
## 返回 | ||
|
||
版本号 | ||
|
||
|
||
|
||
## 示例 | ||
|
||
```javascript | ||
window.Wechat.getSDKVersion( | ||
function(res) { | ||
console.log('get sdk version:', res); | ||
}, | ||
function(err) { | ||
console.error(err); | ||
} | ||
) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# 拉起微信小程序 | ||
# 拉起微信小程序(launchMiniProgram) | ||
|
||
|
||
跳转微信获取微信登录态 | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# 拉起微信App(launchWechatApp) | ||
|
||
|
||
|
||
|
||
|
||
## 参数 | ||
|
||
无 | ||
|
||
|
||
|
||
## 示例 | ||
|
||
```javascript | ||
window.Wechat.launchWechatApp(function(res) { | ||
console.log('launch wechat app success!'); | ||
}, function(err) { | ||
console.error(err); | ||
} | ||
); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 登录 | ||
# 登录(login) | ||
|
||
跳转微信获取微信登录态 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 支付 | ||
# 支付(requestPayment) | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# 一次性订阅消息 | ||
# 一次性订阅消息(requestSubscribeMessage) | ||
|
||
跳转微信获取一次性订阅消息 | ||
|
||
## | ||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.