提交 25f2e2b8 编写于 作者: J Javen205

📝 编写文档

上级 9828793c
......@@ -57,9 +57,8 @@ GitHub:[https://github.com/Javen205/IJPay](https://github.com/Javen205/IJPay)
JavaDoc 文档:[https://apidoc.gitee.com/javen205/IJPay](https://apidoc.gitee.com/javen205/IJPay)
- IJPay 是 [JPay](https://gitee.com/Javen205/JPay) 后台接口 SDK 不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。
- [JPay](https://gitee.com/Javen205/JPay) 是简易而不简单的 Android 支付 SDK,JPay 是对微信 App 支付、支付宝 App 支付的二次封装,对外提供一个相对简单的接口以及支付结果的回调。
- [JPay](https://gitee.com/Javen205/JPay) 是简易而不简单的 Android 支付 SDK,JPay 是对微信 App 支付、支付宝 App 支付的二次封装对外提供一个相对简单的接口以及支付结果的回调。
- IOS 支付 SDK,敬请关注。
### 赞助商与活动推广
......
<template>
<div>
<div class="g-container" @click="toggleButton">
<div class="g-box">在线客服-付费答疑</div>
</div>
</div>
</template>
<script>
export default {
name: 'floatIframe',
data() {
return {
url: ""
}
},
props: {
url: {
default: ''
}
},
methods: {
toggleButton() {
window.open(this.url, '_blank').location;
}
}
}
</script>
<style scoped>
.g-container {
position: fixed;
display: flex;
right: 2%;
top: 10%;
z-index: 11;
width: 180px;
height: 40px;
border-radius: 10px;
background-color: #35bc98;
}
.g-box {
margin: auto;
color: #cdf6ee;
text-shadow: 3px 3px 2px #999;
text-align: center;
}
</style>
\ No newline at end of file
......@@ -16,6 +16,12 @@ features:
details: 支持多应用多商户,支持普通商户模式与服务商商模式当然也支持境外、同时支持 Api-v3 与 Api-v2 版本的接口。
- title: 支付宝支付
details: 支持多应用,签名同时支持普通公钥方式与公钥证书方式
- title: 银联支付
details: 全渠道扫码支付、微信 App 支付、公众号&小程序支付、银联 JS 支付、支付宝服务窗支付
- title: PayPal 支付
details: 自动管理 AccessToken,极速接入各种常用的支付方式
- title: 个人微信支付
details: 微信个人商户,最低费率 0.38%,官方直连的异步回调通知
footer: Apache License 2.0 | Copyright © 2019-present Javen
---
......@@ -90,29 +96,44 @@ export default {
// 通知
this.$notify({
offset: 50,
title: 'IJPay VIP 服务',
message: 'VIP 服务可提供一对一在线答疑,加入 VIP 为您节省更多时间去陪恋人、家人以及朋友 :) 交流群:723992875',
type: 'success',
showClose: true,
duration: 0,
onClick: function() {
// Notification.closeAll();
window.open("https://javen205.gitee.io/ijpay/guide/donate/");
}
});
offset: 50,
title: '在线客服答疑',
message: '按问题付费或者加入 VIP,提供在线一对一技术支持。交流群:723992875',
type: 'success',
showClose: true,
duration: 0,
onClick: function() {
// Notification.closeAll();
window.open("https://javen205.gitee.io/ijpay/guide/donate/");
}
});
// this.$notify({
// offset: 50,
// title: 'IJPay VIP 服务',
// message: 'VIP 服务可提供一对一在线答疑,加入 VIP 为您节省更多时间去陪恋人、家人以及朋友 :) 交流群:723992875',
// type: 'success',
// showClose: true,
// duration: 0,
// onClick: function() {
// // Notification.closeAll();
// window.open("https://javen205.gitee.io/ijpay/guide/donate/");
// }
// });
this.$notify({
offset: 200,
title: 'TNWX 微信系开发脚手架',
message: '同时支持微信公众号、微信小程序、企业微信、企业微信开放平台、微信支付、微信小游戏。可接入到任何 Node.js 框架(Express、Nest、Egg、Koa 等)',
type: 'success',
showClose: true,
duration: 0,
onClick: function() {
window.open("https://gitee.com/Javen205/TNWX");
}
});
// this.$notify({
// offset: 200,
// title: 'TNWX 微信系开发脚手架',
// message: '同时支持微信公众号、微信小程序、企业微信、企业微信开放平台、微信支付、微信小游戏。可接入到任何 Node.js 框架(Express、Nest、Egg、Koa 等)',
// type: 'success',
// showClose: true,
// duration: 0,
// onClick: function() {
// window.open("https://gitee.com/Javen205/TNWX");
// }
// });
}
}
</script>
\ No newline at end of file
</script>
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
\ No newline at end of file
......@@ -141,3 +141,5 @@ JavaDoc 文档:[https://apidoc.gitee.com/javen205/IJPay](https://apidoc.gitee.
- [京东支付](https://payapi.jd.com)
- [京东支付聚合支付](https://mpayx.jd.com/statics/doc/docList.html)
- [银联条码支付综合前置平台](https://up.95516.com/open/openapi?code=unionpay&sdk=IJPay)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -147,4 +147,6 @@ public static AlipayTradeCloseResponse tradeCloseToResponse(AlipayTradeCloseMode
- [IJPay-Demo](https://gitee.com/javen205/IJPay-Demo)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -103,4 +103,6 @@ public String accountQuery(@RequestParam("aliPayUserId") String aliPayUserId) {
}
return null;
}
```
\ No newline at end of file
```
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -110,4 +110,7 @@ public class AliPayApiInterceptor implements Interceptor {
}
}
```
```
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
# IOS-简易而不简单的支付 SDK
敬请关注,欢迎贡献代码
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -249,3 +249,5 @@ JPay.getIntance(mContext).toAliPay(orderInfo, new JPay.AliPayListener() {
[Android Studio 上传aar(Library)到JCenter](http://javen.blog.csdn.net/article/details/60336189)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -38,3 +38,6 @@
[RSA 和 RSA2 签名算法区别](https://docs.open.alipay.com/291/106115)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -50,6 +50,6 @@
- domain= 外网访问项目的域名,支付通知、回调中会使用
:::
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -20,7 +20,12 @@ IJPay 一直以简洁至上、开箱即用为核心,提供的示例简单修
交流群:723992875
直接扫下方二维码付款并备注联系方式(Q号或者微信号)即可快速加入 VIP。
直接扫下方二维码付款并备注联系方式(Q号、手机号或者微信号)即可快速加入 VIP。
::: tip 按问题付费答疑
如果你只有某个疑难问题需要技术支持,可以戳 [在线客服](tencent://message/?uin=572839485&amp;Site=%E5%AE%A2%E6%9C%8D&amp;Menu=yes)
不要问在不在,请直接发问题以及红包
:::
# 请作者喝一杯咖啡
......@@ -41,5 +46,8 @@ IJPay 一直以简洁至上、开箱即用为核心,提供的示例简单修
<a target="_blank" href="https://github.com/Javen205/donate">前往赞助</a>
</p>
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
\ No newline at end of file
......@@ -75,9 +75,7 @@ public class xxHttpKit extends AbstractHttpDelegate {
在 IJPay 中如何快捷的获取异步通知中的数据呢? 在 [HttpKit](https://gitee.com/javen205/IJPay/blob/master/IJPay-Core/src/main/java/com/ijpay/core/kit/HttpKit.java) 中提供了 readData 方法 `HttpKit.readData(HttpServletRequest request)`
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......
......@@ -30,3 +30,5 @@ IJPay 中支持的支付方式以及支付工具
:::
- [IJPay-Demo-SpringBoot](https://gitee.com/javen205/IJPay/tree/master/IJPay-Demo-SpringBoot)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -120,3 +120,5 @@ PayPal 支付
// }
// }
</script>
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -81,5 +81,5 @@ AccessToken accessToken = AccessTokenKit.get(config.getClientId(),true);
- [IJPay-Demo-SpringBoot](https://gitee.com/javen205/IJPay/tree/master/IJPay-Demo-SpringBoot)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -21,6 +21,7 @@ IJPay 中支持的支付方式以及支付工具
使用方式与[微信支付](../wxpay)一致。
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -17,8 +17,7 @@
[精通 JFinal 视频教程](https://www.bilibili.com/video/av40732021?from=IJPay)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......
......@@ -198,3 +198,5 @@ http {
- [阿里云主机低至2折](https://www.aliyun.com/minisite/goods?userCode=b1hkzv2x)
- [腾讯云服务器限时秒杀](https://cloud.tencent.com/act/cps/redirect?redirect=1054&cps_key=a21676d22e4b11a883893d54e158c1d3&from=console)
- [华为云购买享受红利](https://activity.huaweicloud.com/discount_area_v5/index.html?&fromuser=aHcxMTc2NTU3MQ==&utm_source=aHcxMTc2NTU3MQ==&utm_medium=cps&utm_campaign=201905)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
\ No newline at end of file
......@@ -81,4 +81,6 @@ public AjaxResult microPay(HttpServletRequest request, HttpServletResponse respo
## 完整示例
- [IJPay-Demo-SpringBoot](https://gitee.com/javen205/IJPay/blob/master/IJPay-Demo-SpringBoot/src/main/java/com/ijpay/demo/controller/unionpay/UnionPayController.java)
\ No newline at end of file
- [IJPay-Demo-SpringBoot](https://gitee.com/javen205/IJPay/blob/master/IJPay-Demo-SpringBoot/src/main/java/com/ijpay/demo/controller/unionpay/UnionPayController.java)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -56,3 +56,5 @@ $ yarn add tnwx
- `Avue` 一款基于 vue 可配置化的神奇框架:https://gitee.com/smallweigit/avue
- `pig` 宇宙最强微服务(架构师必备):https://gitee.com/log4j/pig
- `SpringBlade` 完整的线上解决方案(企业开发必备):https://gitee.com/smallc/SpringBlade
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -48,5 +48,5 @@ weixin_guide 是基于 jfinal_weixin SDK 开发的实战项目。
`详见请见`[项目运行截图](http://gitee.com/javen205/weixin_guide/wikis/%E8%BF%90%E8%A1%8C%E6%95%88%E6%9E%9C%E5%9B%BE)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -153,4 +153,5 @@ return new AjaxResult().success(jsonStr);
- [IJPay-Demo](https://gitee.com/javen205/IJPay-Demo)
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -218,3 +218,5 @@ PrivateKey privateKey = PayKit.getPrivateKey(wxPayV3Bean.getKeyPath());
String decrypt = PayKit.rsaDecryptOAEP(encryptStr, privateKey);
System.out.println(decrypt);
```
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -195,3 +195,5 @@ IJPay 默认 Http 客户端是使用 [HuTool](https://hutool.cn) 中的 Http 客
}
```
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
......@@ -65,7 +65,7 @@ java.security.InvalidKeyException: Illegal key size
:::
<Q url="tencent://message/?uin=572839485&Site=%E5%AE%A2%E6%9C%8D&Menu=yes" />
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册