- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章微信小程序支付C#后端源码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例为大家分享了微信小程序支付C#后端源码,供大家参考,具体内容如下 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Text;
using
System.Web;
using
System.Web.Mvc;
using
System.IO;
using
System.Security.Cryptography;
using
System.Text;
using
System.Xml;
using
Newtonsoft.Json;
using
Newtonsoft.Json.Linq;
namespace
Mvc_vue.Controllers
{
public
class
wxController : Controller
{
//
// GET: /wx/
public
ActionResult Index()
{
return
View();
}
//所需值
public
static
string
_appid =
"wxd930ea5d5a258f4f"
;
public
static
string
_mch_id =
"10000100"
;
public
static
string
_key =
"192006250b4c09247ec02edce69f6a2d"
;
//模拟wx统一下单 openid(前台获取)
public
string
getda(
string
openid)
{
return
Getprepay_id(_appid,
"shanghaifendian"
,
"monixiaofei"
, _mch_id, GetRandomString(30),
"http://www.weixin.qq.com/wxpay/pay.php"
, openid, getRandomTime(), 1);
}
//微信统一下单获取prepay_id & 再次签名返回数据
private
static
string
Getprepay_id(
string
appid,
string
attach,
string
body,
string
mch_id,
string
nonce_str,
string
notify_url,
string
openid,
string
bookingNo,
int
total_fee)
{
var url =
"https://api.mch.weixin.qq.com/pay/unifiedorder"
;//微信统一下单请求地址
string
strA =
"appid="
+ appid +
"&attach="
+ attach +
"&body="
+ body +
"&mch_id="
+ mch_id +
"&nonce_str="
+ nonce_str +
"¬ify_url="
+ notify_url +
"&openid="
+ openid +
"&out_trade_no="
+ bookingNo +
"&spbill_create_ip=61.50.221.43&total_fee="
+ total_fee +
"&trade_type=JSAPI"
;
string
strk = strA +
"&key="
+_key;
//key为商户平台设置的密钥key(假)
string
strMD5 = MD5(strk).ToUpper();
//MD5签名
//string strHash=HmacSHA256("sha256",strmd5).ToUpper(); //签名方式只需一种(MD5 或 HmacSHA256 【支付文档需仔细看】)
//签名
var formData =
"<xml>"
;
formData +=
"<appid>"
+ appid +
"</appid>"
;
//appid
formData +=
"<attach>"
+ attach +
"</attach>"
;
//附加数据(描述)
formData +=
"<body>"
+ body +
"</body>"
;
//商品描述
formData +=
"<mch_id>"
+ mch_id +
"</mch_id>"
;
//商户号
formData +=
"<nonce_str>"
+ nonce_str +
"</nonce_str>"
;
//随机字符串,不长于32位。
formData +=
"<notify_url>"
+ notify_url +
"</notify_url>"
;
//通知地址
formData +=
"<openid>"
+ openid +
"</openid>"
;
//openid
formData +=
"<out_trade_no>"
+ bookingNo +
"</out_trade_no>"
;
//商户订单号 --待
formData +=
"<spbill_create_ip>61.50.221.43</spbill_create_ip>"
;
//终端IP --用户ip
formData +=
"<total_fee>"
+ total_fee +
"</total_fee>"
;
//支付金额单位为(分)
formData +=
"<trade_type>JSAPI</trade_type>"
;
//交易类型(JSAPI--公众号支付)
formData +=
"<sign>"
+ strMD5 +
"</sign>"
;
//签名
formData +=
"</xml>"
;
//请求数据
var getdata = sendPost(url, formData);
//获取xml数据
XmlDocument doc =
new
XmlDocument();
doc.LoadXml(getdata);
//xml格式转json
string
json = Newtonsoft.Json.JsonConvert.SerializeXmlNode(doc);
JObject jo = (JObject)JsonConvert.DeserializeObject(json);
string
prepay_id = jo[
"xml"
][
"prepay_id"
][
"#cdata-section"
].ToString();
//时间戳
string
_time = getTime().ToString();
//再次签名返回数据至小程序
string
strB =
"appId="
+ appid +
"&nonceStr="
+ nonce_str +
"&package=prepay_id="
+ prepay_id +
"&signType=MD5&timeStamp="
+ _time +
"&key="
_key;
wx w =
new
wx();
w.timeStamp = _time;
w.nonceStr = nonce_str;
w.package =
"prepay_id="
+ prepay_id;
w.paySign = MD5(strB).ToUpper(); ;
w.signType =
"MD5"
;
//向小程序发送json数据
return
JsonConvert.SerializeObject(w);
}
/// <summary>
/// 生成随机串
/// </summary>
/// <param name="length">字符串长度</param>
/// <returns></returns>
private
static
string
GetRandomString(
int
length)
{
const
string
key =
"ABCDEFGHJKLMNPQRSTUVWXYZ23456789"
;
if
(length < 1)
return
string
.Empty;
Random rnd =
new
Random();
byte
[] buffer =
new
byte
[8];
ulong
bit = 31;
ulong
result = 0;
int
index = 0;
StringBuilder sb =
new
StringBuilder((length / 5 + 1) * 5);
while
(sb.Length < length)
{
rnd.NextBytes(buffer);
buffer[5] = buffer[6] = buffer[7] = 0x00;
result = BitConverter.ToUInt64(buffer, 0);
while
(result > 0 && sb.Length < length)
{
index = (
int
)(bit & result);
sb.Append(key[index]);
result = result >> 5;
}
}
return
sb.ToString();
}
/// <summary>
/// 获取时间戳
/// </summary>
/// <returns></returns>
private
static
long
getTime()
{
TimeSpan cha = (DateTime.Now - TimeZone.CurrentTimeZone.ToLocalTime(
new
System.DateTime(1970, 1, 1)));
long
t = (
long
)cha.TotalSeconds;
return
t;
}
/// <summary>
/// MD5签名方法
/// </summary>
/// <param name="inputText">加密参数</param>
/// <returns></returns>
private
static
string
MD5(
string
inputText)
{
MD5 md5 =
new
MD5CryptoServiceProvider();
byte
[] fromData = System.Text.Encoding.UTF8.GetBytes(inputText);
byte
[] targetData = md5.ComputeHash(fromData);
string
byte2String =
null
;
for
(
int
i = 0; i < targetData.Length; i++)
{
byte2String += targetData[i].ToString(
"x2"
);
}
return
byte2String;
}
/// <summary>
/// HMAC-SHA256签名方式
/// </summary>
/// <param name="message"></param>
/// <param name="secret"></param>
/// <returns></returns>
private
static
string
HmacSHA256(
string
message,
string
secret)
{
secret = secret ??
""
;
var encoding =
new
System.Text.UTF8Encoding();
byte
[] keyByte = encoding.GetBytes(secret);
byte
[] messageBytes = encoding.GetBytes(message);
using
(var hmacsha256 =
new
HMACSHA256(keyByte))
{
byte
[] hashmessage = hmacsha256.ComputeHash(messageBytes);
return
Convert.ToBase64String(hashmessage);
}
}
/// <summary>
/// wx统一下单请求数据
/// </summary>
/// <param name="URL">请求地址</param>
/// <param name="urlArgs">参数</param>
/// <returns></returns>
private
static
string
sendPost(
string
URL,
string
urlArgs)
{
//context.Request["args"]
System.Net.WebClient wCient =
new
System.Net.WebClient();
wCient.Headers.Add(
"Content-Type"
,
"application/x-www-form-urlencoded"
);
byte
[] postData = System.Text.Encoding.ASCII.GetBytes(
"body="
+ urlArgs);
byte
[] responseData = wCient.UploadData(URL,
"POST"
, postData);
string
returnStr = System.Text.Encoding.UTF8.GetString(responseData);
//返回接受的数据
return
returnStr;202 }
/// <summary>
/// 生成订单号
/// </summary>
/// <returns></returns>
private
static
string
getRandomTime()
{
Random rd =
new
Random();
//用于生成随机数
string
DateStr = DateTime.Now.ToString(
"yyyyMMddHHmmssMM"
);
//日期
string
str = DateStr + rd.Next(10000).ToString().PadLeft(4,
'0'
);
//带日期的随机数
return
str;
}
}
}
|
使用的是MVC .NET Framework4 。
微信小程序支付前端源码 。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://www.cnblogs.com/oneall/p/9548722.html 。
最后此篇关于微信小程序支付C#后端源码的文章就讲到这里了,如果你想了解更多关于微信小程序支付C#后端源码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
当有人使用微信(微信)分享我的一款游戏(用 JavaScript 制作)时,我正在使用 WeixinJSBridge 修改分享参数。 下面的代码位于一个很大的 JavaScript 文件(超过 250
我转微信了padplus来自wechaty-puppet-puppeteer的傀儡并发现它比 wechaty-puppet-puppeteer 更频繁地停止.即,wechaty-puppet-pupp
微信小程序一出,立马炸开了锅,都去搭建自己的开发环境,我这里也来尝尝先,之前发了一篇文章,有人问demo怎么导入? demo源代码(来自网络) 百度: https://pan.baidu.com
微信小程序可谓是今天最火的一个名词了,一经出现真是轰炸了整个开发人员,当然很多app开发人员有了一个担心,微信小程序的到来会不会给移动端app带来一个寒冬,身为一个android开发者我是不相信的,
memcache缓存存储用户信息7000秒 ? 1
微信开发生成带参数的二维码的讲解 在微信公众号平台开发者那里,在“账号管理”那里,有一项功能是“生成带参数的二维码”,通过这儿生成的二维码,只要通过微信扫一扫之后,会把事件自动推送到微信公众号上
某日,一同学给小的发了 Github 源码,说是可以轻松查到删除自己的微信好友,于是就开始了作死之路。 Github 源码请看:0x5e/wechat-deleted-friends 前言
近段时间山西的连续降雨,不少的城市都出现了洪灾,救灾物资匮乏,不少明星及爱心人士都纷纷向山西捐款,那么目前来说山西捐款的通道有哪些呢?在支付宝,微信上如何给山西捐款呢?下面就和小编一起来看看山西捐款
一.集成支付宝支付 支付宝集成官方教程 https://docs.open.alipay.com/204/105295/ 支付宝集成官方demo https://docs.o
一.越来越多的app增加第三方的功能,可能app有不同的页面但调用相同的支付方式,例如界面如下: 这两个页面都会使用第三方支付支付:(微信,支付宝,银联)如果在每一个页面都直接调用第三方支付的
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 8 年前。 Improve this ques
我安装了一个虚假的位置应用程序并将我的位置设置为不同的位置。然后打开谷歌地图和微信应用, Google map 将我的位置显示为我设置的(假的) 微信应用忽略虚假位置并检测真实位置(如何?) 然后我想
前言 支付分APP支付、H5支付、扫码支付等。app支付一般在app中使用,并且需要集成相应的支付SDK,H5支付多用于网页。如果你的APP不想集成支付SDK,又想实现支付功能,你可以在项目中使用
最近一直在调用微信的api,却发现一直调用不成功,纠结了好久,各方面找教程,找官方,官方里的文档也只是写得很模糊,说是按三步走。 1、申请app_id 2、填写包名3、 获取程序签
和平精英QQ/微信 每日登陆抽奖1~188Q币 活动两个QQ和微信都可以 每天登陆游戏并且玩一局 然后可以去活动界面抽奖Q币 QQ端(需玩一局):http://t.cn/Ai1Jn7Tz
目前,当我使用带有 Link 插件的 TinyMce4.5.1 时。即使我将属性 link_list 设置为 false,我也找不到隐藏默认 URL 选项(#top、#bottom)的方法。除了破
实际上,我正在尝试使用微信为我的 Web 应用程序设置 OAuth 登录。所以,我在微信上创建了一个帐户,并使用了一个测试帐户来无限访问。 因此,在测试帐户配置中,我已成功验证来自微信的 token
不管是腾讯还是新浪,查看他们的API,PHP都是有完整的接口,但对C#支持似乎都不是那么完善,都没有,腾讯是完全没有,新浪是提供第三方的,而且后期还不一定升级,NND,用第三方的动辄就一个类库,各种
和平精英QQ/微信 每日登陆抽奖1~188Q币/现金红包 活动两个QQ和微信都可以 QQ的登录游戏和分享好友即可获得三次抽奖次数 微信登录游戏就可以抽奖 如果没有反应就分享链接出去从分享的链接进
我想做什么 我正在尝试将我自己的基于 WebGL 的引擎移植到微信小游戏环境,目前只是尝试让 WebGL 上下文被粉红色清除: 有什么问题 我已经按照腾讯提供的示例以及 ThreeJS 示例来设置游戏
我是一名优秀的程序员,十分优秀!