37 lines
1.5 KiB
C#
37 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Aop.Api
|
|
{
|
|
public class AlipayConstants
|
|
{
|
|
public const string APP_ID = "app_id";
|
|
public const string FORMAT = "format";
|
|
public const string METHOD = "method";
|
|
public const string TIMESTAMP = "timestamp";
|
|
public const string VERSION = "version";
|
|
public const string SIGN_TYPE = "sign_type";
|
|
public const string ACCESS_TOKEN = "auth_token";
|
|
public const string APP_AUTH_TOKEN = "app_auth_token";
|
|
public const string TARGET_APP_ID = "target_app_id";
|
|
public const string SIGN = "sign";
|
|
public const string TERMINAL_TYPE = "terminal_type";
|
|
public const string TERMINAL_INFO = "terminal_info";
|
|
public const string PROD_CODE = "prod_code";
|
|
public const string NOTIFY_URL = "notify_url";
|
|
public const string CHARSET = "charset";
|
|
public const string ENCRYPT_TYPE = "encrypt_type";
|
|
public const string BIZ_CONTENT = "biz_content";
|
|
public const string RETURN_URL = "return_url";
|
|
public const string APP_CERT_SN = "app_cert_sn";
|
|
public const string ALIPAY_CERT_SN = "alipay_cert_sn";
|
|
public const string ALIPAY_ROOT_CERT_SN = "alipay_root_cert_sn";
|
|
public const string ALIPAY_SDK = "alipay_sdk";
|
|
|
|
public const string RESPONSE_SUFFIX = "_response";
|
|
public const string ERROR_RESPONSE = "error_response";
|
|
public const string ENCRYPT_NODE_NAME = "response_encrypted";
|
|
}
|
|
}
|