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}
12require_once('vendor/autoload.php');34useWeChatPay\Builder;5useWeChatPay\Crypto\Rsa;6useWeChatPay\Util\PemUtil;78$merchantId='190000****';9$merchantPrivateKeyFilePath='file:///path/to/merchant/apiclient_key.pem';10$merchantPrivateKeyInstance=Rsa::from($merchantPrivateKeyFilePath,Rsa::KEY_TYPE_PRIVATE);11$merchantCertificateSerial='3775B6A45ACD588826D15E583A95F5DD********';12$platformCertificateFilePath='file:///path/to/wechatpay/cert.pem';13$platformPublicKeyInstance=Rsa::from($platformCertificateFilePath,Rsa::KEY_TYPE_PUBLIC);14$platformCertificateSerial=PemUtil::parseCertificateSerialNo($platformCertificateFilePath);1516// init a API V3 instance17$instance=Builder::factory([18'mchid'=>$merchantId,19'serial'=>$merchantCertificateSerial,20'privateKey'=>$merchantPrivateKeyInstance,21'certs'=>[22$platformCertificateSerial=>$platformPublicKeyInstance,23],24]);25
12@Test3//Call query order API4publicvoidqueryOrderTest()throwsIOException{5HttpGethttpGet=newHttpGet("https://apihk.mch.weixin.qq.com/v3/global/transactions/id/"+6"4200123456789000?sub_mchid=100012321&sp_mchid=1900000000");7httpGet.addHeader("Accept","application/json");8httpGet.addHeader("Content-type","application/json; charset=utf-8");9CloseableHttpResponseresponse=httpClient.execute(httpGet);10//Process the response 11}12
示例代码 - GO:
12//Call query order API3funcqueryOrder(){4result,err:=client.Get(ctx,"https://apihk.mch.weixin.qq.com/v3/global/transactions/id/4200000000000000?sub_mchid=100012321&sp_mchid=1900000000")5iferr!=nil{6// Process error7}8log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)9}
示例代码 - PHP:
12// Call query order API3publicfunctionqueryOrder($instance)4{5try{6$resp=$instance7->v3->global->transactions->outTradeNo->_out_trade_no_8->get([9'query'=>[10'sp_mchid'=>'1900000000',11'sub_mchid'=>'100012321',12],13'out_trade_no'=>'YX0001'14]15);1617echo$resp->getStatusCode(),PHP_EOL;18echo$resp->getBody(),PHP_EOL;19}catch(Exception$e){20// Exception handling21}22}
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:
12funcrefund(){3refundRequestBody:=`{4"sp_appid": "wx2421b1c4370ec43b",5"sp_mchid": "10000100",6"sub_mchid": "20000100",7"transaction_id": "1008450740201411110005820873",8"out_refund_no": "R20150806125346",9"amount" : {10"refund": 50,11"total":100,12"currency":"HKD"13},14"reason": "The item has been sold out",15"source": "REFUND_SOURCE_UNSETTLED_FUNDS"16}`17result,err:=client.Post(ctx,"https://apihk.mch.weixin.qq.com/v3/global/refunds",refundRequestBody)18iferr!=nil{19// Process error20}21log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)22}
12@Test3//Call Query Refund API4publicvoidquerySingleRefundTest()throwsIOException{5HttpGethttpGet=newHttpGet("https://apihk.mch.weixin.qq.com/v3/global/refunds/out-refund-no/RYX001?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}11
示例代码 - GO:
12//Query single refund API3funcquerySingleRefund(){4result,err:=client.Get(ctx,"https://apihk.mch.weixin.qq.com/v3/global/refunds/out-refund-no/REFUNDYX001?sub_mchid=100012321&sp_mchid=1900000000")5iferr!=nil{6// Process error7}8log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)9}
12@Test3//Call Query All Refund API4publicvoidqueryAllRefundTest()throwsIOException{5HttpGethttpGet=newHttpGet("https://apihk.mch.weixin.qq.com/v3/global/refunds"+6"?out_trade_no=YX202111100020&count=10&offset=0&sp_mchid=1900000000&sub_mchid=100012321");7httpGet.addHeader("Accept","application/json");8httpGet.addHeader("Content-type","application/json; charset=utf-8");9CloseableHttpResponseresponse=httpClient.execute(httpGet);10//Process the response 11}12
示例代码 - GO:
12//Query all refund API3funcqueryAllRefund(){4result,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")5iferr!=nil{6// Process error7}8log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)9}
示例代码 - PHP:
12// Call Query All Refund API3publicfunctionqueryAllRefund($instance){4try{5$resp=$instance6->v3->global->refunds7->get([8'query'=>[9'out_trade_no'=>'YX001',10'count'=>10,11'offset'=>0,12'sp_mchid'=>'1900000000',13'sub_mchid'=>'100012321'14]15]);1617echo$resp->getStatusCode(),PHP_EOL;18echo$resp->getBody(),PHP_EOL;19}catch(Exception$e){20// Exception handling21}22}
12@Test3//Call close order API4publicvoidcloseOrderTest()throwsIOException{5StringcloseBody=String.join("\n",6"{",7" 'sp_mchid': '10000100',",8" 'sub_mchid': '20000100'",9"}").replace("'","\"");10HttpPosthttpPost=newHttpPost("https://apihk.mch.weixin.qq.com/v3/global/transactions/out-trade-no/YX001/close");11httpPost.addHeader("Accept","application/json");12httpPost.addHeader("Content-type","application/json; charset=utf-8");13httpPost.setEntity(newStringEntity(closeBody));14CloseableHttpResponseresponse=httpClient.execute(httpPost);15System.out.println(response.getStatusLine().getStatusCode());16}17
示例代码 - GO:
12//Call close order API3funccloseOrder(){4closeOrderBody:=`{5"sp_mchid": "10000100",6"sub_mchid": "20000100"7}`8result,err:=client.Post(ctx,"https://apihk.mch.weixin.qq.com/v3/global/transactions/out-trade-no/YX001/close",closeOrderBody)9iferr!=nil{10// Process error11}12log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)13}
示例代码 - 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}
12@Test3//Call certificate downloading API4publicvoidcertDownloadingTest()throwsIOException{5HttpGethttpGet=newHttpGet("https://apihk.mch.weixin.qq.com/v3/global/certificates");6httpGet.addHeader("Accept","application/json");7httpGet.addHeader("Content-type","application/json; charset=utf-8");89CloseableHttpResponseresponse=httpClient.execute(httpGet);10//Process the response 11//Get the response body: EntityUtils.toString(response.getEntity());12//Get the response status code: response.getStatusLine().getStatusCode();1314//Instead of calling the API to download platform certificate,15//We also recommend use the certificateMenager to get the valid certificate16verifier.getValidCertificate();17}18
示例代码 - GO:
12//Calling download certificate API3funcdownloadCert(){4result,err:=client.Get((ctx,"https://apihk.mch.weixin.qq.com/v3/global/certificates"))5iferr!=nil{6ifcore.IsAPIError(err,"INVALID_REQUEST"){7//Process invalid request8}9// Process other error10}11log.Printf("status=%d resp=%s",result.Response.StatusCode,result.Response.Body)12}