You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
5.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
using Aop.Api.Util;
using Aop.Api.Request;
using Aop.Api.Response;
using Jayrock.Json;
namespace Aop.Api.Test
{
class PublicTest
{
[STAThread]
//static void Main()
//{
// // 公众号菜单查询
// //MenuGet();
// // 公众号通知消息签名验证
// //CheckSign();
// // 公众号验签&解密
// CheckSignAndDecrypt();
// // 公众号加密&加签
// EncryptAndSign();
//}
private static void CheckSign()
{
IDictionary<string, string> paramsMap = new Dictionary<string, string>();
paramsMap.Add("appId", "2013092500031084");
string privateKeyPem = GetCurrentPath() + "aop-sandbox-RSA-private-c#.pem";
string sign = AlipaySignature.RSASign(paramsMap, privateKeyPem, null,"RSA");
paramsMap.Add("sign", sign);
string publicKey = GetCurrentPath() + "public-key.pem";
bool checkSign = AlipaySignature.RSACheckV2(paramsMap, publicKey);
System.Console.Write("---------公众号通知消息签名验证--------" + "\n\r");
System.Console.Write("checkSign:" + checkSign + "\n\r");
}
private static void MenuGet()
{
IAopClient client = GetAlipayClient();
//AlipayMobilePublicMenuGetRequest req = new AlipayMobilePublicMenuGetRequest();
//AlipayMobilePublicMenuGetResponse res = client.Execute(req);
System.Console.Write("-------------公众号菜单查询-------------" + "\n\r");
// System.Console.Write("Body:" + res.Body + "\n\r");
}
private static IAopClient GetAlipayClient()
{
//支付宝网关地址
// -----沙箱地址-----
string serverUrl = "http://openapi.alipaydev.com/gateway.do";
// -----线上地址-----
// string serverUrl = "https://openapi.alipay.com/gateway.do";
//应用ID
string appId = "2013092500031084";
//商户私钥
string privateKeyPem = GetCurrentPath() + "aop-sandbox-RSA-private-c#.pem";
IAopClient client = new DefaultAopClient(serverUrl, appId, privateKeyPem);
return client;
}
private static string GetCurrentPath()
{
string basePath = System.IO.Directory.GetParent(System.Environment.CurrentDirectory).Parent.FullName;
return basePath + "/Test/";
}
public static void CheckSignAndDecrypt()
{
// 参数构建
string charset = "UTF-8";
string bizContent = "<XML><AppId><![CDATA[2013082200024893]]></AppId><FromUserId><![CDATA[2088102122485786]]></FromUserId><CreateTime>1377228401913</CreateTime><MsgType><![CDATA[click]]></MsgType><EventType><![CDATA[event]]></EventType><ActionParam><![CDATA[authentication]]></ActionParam><AgreementId><![CDATA[201308220000000994]]></AgreementId><AccountNo><![CDATA[null]]></AccountNo><UserInfo><![CDATA[{\"logon_id\":\"15858179811\",\"user_name\":\"许旦辉\"}]]></UserInfo></XML>";
string publicKeyPem = GetCurrentPath() + "public-key.pem";
string privateKeyPem = GetCurrentPath() + "aop-sandbox-RSA-private-c#.pem";
IDictionary<string, string> paramsMap = new Dictionary<string, string>();
paramsMap.Add("biz_content", AlipaySignature.RSAEncrypt(bizContent, publicKeyPem, charset));
paramsMap.Add("charset", charset);
paramsMap.Add("service", "alipay.mobile.public.message.notify");
paramsMap.Add("sign_type", "RSA");
paramsMap.Add("sign", AlipaySignature.RSASign(paramsMap, privateKeyPem,null,"RSA"));
// 验签&解密
string resultContent = AlipaySignature.CheckSignAndDecrypt(paramsMap, publicKeyPem, privateKeyPem, true, true);
System.Console.Write("resultContent=" + resultContent+ "\n\r");
}
public static void EncryptAndSign()
{
// 参数构建
string bizContent = "<XML><ToUserId><![CDATA[2088102122494786]]></ToUserId><AppId><![CDATA[2013111100036093]]></AppId><AgreementId><![CDATA[20131111000001895078]]></AgreementId>"
+ "<CreateTime>12334349884</CreateTime>"
+ "<MsgType><![CDATA[image-text]]></MsgType>"
+ "<ArticleCount>1</ArticleCount>"
+ "<Articles>"
+ "<Item>"
+ "<Title><![CDATA[[回复测试加密解密]]></Title>"
+ "<Desc><![CDATA[测试加密解密]]></Desc>"
+ "<Url><![CDATA[http://m.taobao.com]]></Url>"
+ "<ActionName><![CDATA[立即前往]]></ActionName>"
+ "</Item>"
+ "</Articles>" + "<Push><![CDATA[false]]></Push>" + "</XML>";
string publicKeyPem = GetCurrentPath() + "public-key.pem";
string privateKeyPem = GetCurrentPath() + "aop-sandbox-RSA-private-c#.pem";
string responseContent = AlipaySignature.encryptAndSign(bizContent, publicKeyPem, privateKeyPem,"UTF-8",true,true);
System.Console.Write("resultContent=" + responseContent + "\n\r");
}
}
}