1privateCloseableHttpClienthttpClient;2privateCertificatesManagercertificatesManager;3privateVerifierverifier;45@Before6//initialize verifier and build httpClient7publicvoidsetup()throwsGeneralSecurityException,IOException,HttpCodeException,NotFoundException{89PrivateKeymerchantPrivateKey=PemUtil.loadPrivateKey(privateKey);10certificatesManager=CertificatesManager.getInstance();11certificatesManager.putMerchant(merchantId,newWechatPay2Credentials(merchantId,12newPrivateKeySigner(merchantSerialNumber,merchantPrivateKey)),13apiV3Key.getBytes(StandardCharsets.UTF_8));14verifier=certificatesManager.getVerifier(merchantId);15WechatPayHttpClientBuilderbuilder=WechatPayHttpClientBuilder.create()16.withMerchant(merchantId,merchantSerialNumber,merchantPrivateKey)17.withValidator(newWechatPay2Validator(verifier));18httpClient=builder.build();19}20
1require_once('vendor/autoload.php');23useWeChatPay\Builder;4useWeChatPay\Crypto\Rsa;5useWeChatPay\Util\PemUtil;67$merchantId='190000****';8$merchantPrivateKeyFilePath='file:///path/to/merchant/apiclient_key.pem';9$merchantPrivateKeyInstance=Rsa::from($merchantPrivateKeyFilePath,Rsa::KEY_TYPE_PRIVATE);10$merchantCertificateSerial='3775B6A45ACD588826D15E583A95F5DD********';11$platformCertificateFilePath='file:///path/to/wechatpay/cert.pem';12$platformPublicKeyInstance=Rsa::from($platformCertificateFilePath,Rsa::KEY_TYPE_PUBLIC);13$platformCertificateSerial=PemUtil::parseCertificateSerialNo($platformCertificateFilePath);1415// init a API V3 instance16$instance=Builder::factory([17'mchid'=>$merchantId,18'serial'=>$merchantCertificateSerial,19'privateKey'=>$merchantPrivateKeyInstance,20'certs'=>[21$platformCertificateSerial=>$platformPublicKeyInstance,22],23]);24
1@Test2//Call query order API3publicvoidqueryOrderTest()throwsIOException{4HttpGethttpGet=newHttpGet("https://apihk.mch.weixin.qq.com/v3/global/transactions/id/"+5"4200123456789000?sub_mchid=100012321&sp_mchid=1900000000");6httpGet.addHeader("Accept","application/json");7httpGet.addHeader("Content-type","application/json; charset=utf-8");8CloseableHttpResponseresponse=httpClient.execute(httpGet);9//Process the response 10}
示例代码 - GO:
1//Call query order API2funcqueryOrder(){3result,err:=client.Get(ctx,"https://apihk.mch.weixin.qq.com/v3/global/transactions/id/4200000000000000?sub_mchid=100012321&sp_mchid=1900000000")4iferr!=nil{5// Process error6}7log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)8}
示例代码 - PHP:
1// Call query order API2publicfunctionqueryOrder($instance)3{4try{5$resp=$instance6->v3->global->transactions->outTradeNo->_out_trade_no_7->get([8'query'=>[9'sp_mchid'=>'1900000000',10'sub_mchid'=>'100012321',11],12'out_trade_no'=>'YX0001'13]14);1516echo$resp->getStatusCode(),PHP_EOL;17echo$resp->getBody(),PHP_EOL;18}catch(Exception$e){19// Exception handling20}21}
12@Test3//Call Refund API4publicvoidrefundTest()throwsIOException{5StringrefundBody=String.join("\n",6"{",7"'sp_appid': 'wx2421b1c4370ec43b', ",8"'sp_mchid': '10000100',",9"'sub_mchid': '20000100',",10"'transaction_id': '1008450740201411110005820873',",11"'out_refund_no': 'R20150806125346',",12" 'amount' : {",13" 'refund': 5,",14" 'total':10,",15" 'currency':'HKD'",16" },",17" 'reason': 'The item has been sold out.',",18" 'source': 'REFUND_SOURCE_UNSETTLED_FUNDS'",19"}").replace("'","\"");20HttpPosthttpPost=newHttpPost("https://apihk.mch.weixin.qq.com/v3/global/refunds");21httpPost.addHeader("Accept","application/json");22httpPost.addHeader("Content-type","application/json; charset=utf-8");23httpPost.setEntity(newStringEntity(refundBody));24CloseableHttpResponseresponse=httpClient.execute(httpPost);25//Process the response 26}27
示例代码 - GO:
1funcrefund(){2refundRequestBody:=`{3"sp_appid": "wx2421b1c4370ec43b",4"sp_mchid": "10000100",5"sub_mchid": "20000100",6"transaction_id": "1008450740201411110005820873",7"out_refund_no": "R20150806125346",8"amount" : {9"refund": 50,10"total":100,11"currency":"HKD"12},13"reason": "The item has been sold out",14"source": "REFUND_SOURCE_UNSETTLED_FUNDS"15}`16result,err:=client.Post(ctx,"https://apihk.mch.weixin.qq.com/v3/global/refunds",refundRequestBody)17iferr!=nil{18// Process error19}20log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)21}
1@Test2//Call Query Refund API3publicvoidquerySingleRefundTest()throwsIOException{4HttpGethttpGet=newHttpGet("https://apihk.mch.weixin.qq.com/v3/global/refunds/out-refund-no/RYX001?sub_mchid=100012321&sp_mchid=1900000000");5httpGet.addHeader("Accept","application/json");6httpGet.addHeader("Content-type","application/json; charset=utf-8");7CloseableHttpResponseresponse=httpClient.execute(httpGet);8//Process the response 9}10
示例代码 - GO:
1//Query single refund API2funcquerySingleRefund(){3result,err:=client.Get(ctx,"https://apihk.mch.weixin.qq.com/v3/global/refunds/out-refund-no/REFUNDYX001?sub_mchid=100012321&sp_mchid=1900000000")4iferr!=nil{5// Process error6}7log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)8}
1@Test2//Call Query All Refund API3publicvoidqueryAllRefundTest()throwsIOException{4HttpGethttpGet=newHttpGet("https://apihk.mch.weixin.qq.com/v3/global/refunds"+5"?out_trade_no=YX202111100020&count=10&offset=0&sp_mchid=1900000000&sub_mchid=100012321");6httpGet.addHeader("Accept","application/json");7httpGet.addHeader("Content-type","application/json; charset=utf-8");8CloseableHttpResponseresponse=httpClient.execute(httpGet);9//Process the response 10}11
示例代码 - GO:
1//Query all refund API2funcqueryAllRefund(){3result,err:=client.Get(ctx,"https://apihk.mch.weixin.qq.com/v3/global/refunds/out-refund-no/out_trade_no=YX001&count=10&offset=0&sp_mchid=1900000000&sub_mchid=100012321")4iferr!=nil{5// Process error6}7log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)8}
示例代码 - PHP:
1// Call Query All Refund API2publicfunctionqueryAllRefund($instance){3try{4$resp=$instance5->v3->global->refunds6->get([7'query'=>[8'out_trade_no'=>'YX001',9'count'=>10,10'offset'=>0,11'sp_mchid'=>'1900000000',12'sub_mchid'=>'100012321'13]14]);1516echo$resp->getStatusCode(),PHP_EOL;17echo$resp->getBody(),PHP_EOL;18}catch(Exception$e){19// Exception handling20}21}
1@Test2//Call close order API3publicvoidcloseOrderTest()throwsIOException{4StringcloseBody=String.join("\n",5"{",6" 'sp_mchid': '10000100',",7" 'sub_mchid': '20000100'",8"}").replace("'","\"");9HttpPosthttpPost=newHttpPost("https://apihk.mch.weixin.qq.com/v3/global/transactions/out-trade-no/YX001/close");10httpPost.addHeader("Accept","application/json");11httpPost.addHeader("Content-type","application/json; charset=utf-8");12httpPost.setEntity(newStringEntity(closeBody));13CloseableHttpResponseresponse=httpClient.execute(httpPost);14System.out.println(response.getStatusLine().getStatusCode());15}
示例代码 - GO:
1//Call close order API2funccloseOrder(){3closeOrderBody:=`{4"sp_mchid": "10000100",5"sub_mchid": "20000100"6}`7result,err:=client.Post(ctx,"https://apihk.mch.weixin.qq.com/v3/global/transactions/out-trade-no/YX001/close",closeOrderBody)8iferr!=nil{9// Process error10}11log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)12}
示例代码 - PHP:
1// Call close order API2publicfunctioncloseOrder($instance){3try{4$resp=$instance5->v3->global->transactions->outTradeNo->_out_trade_no_->close6->post([7'json'=>[8'sp_mchid'=>'10000100',9'sub_mchid'=>'20000100'10],11'out_trade_no'=>'YX0001'12]);13echo$resp->getStatusCode(),PHP_EOL;14echo$resp->getBody(),PHP_EOL;15}catch(Exception$e){16// Exception handling17}18}
1@Test2//Call certificate downloading API3publicvoidcertDownloadingTest()throwsIOException{4HttpGethttpGet=newHttpGet("https://apihk.mch.weixin.qq.com/v3/global/certificates");5httpGet.addHeader("Accept","application/json");6httpGet.addHeader("Content-type","application/json; charset=utf-8");78CloseableHttpResponseresponse=httpClient.execute(httpGet);9//Process the response 10//Get the response body: EntityUtils.toString(response.getEntity());11//Get the response status code: response.getStatusLine().getStatusCode();1213//Instead of calling the API to download platform certificate,14//We also recommend use the certificateMenager to get the valid certificate15verifier.getValidCertificate();16}
示例代码 - GO:
1//Calling download certificate API2funcdownloadCert(){3result,err:=client.Get((ctx,"https://apihk.mch.weixin.qq.com/v3/global/certificates"))4iferr!=nil{5ifcore.IsAPIError(err,"INVALID_REQUEST"){6//Process invalid request7}8// Process other error9}10log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)11}