All URIs are relative to https://openapi.alipay.com
Method | HTTP request | Description |
---|---|---|
apply | POST /v3/alipay/ebpp/invoice/isvtoken/reim/apply | 获取报销授权令牌 |
AlipayEbppInvoiceIsvtokenReimApplyResponseModel apply(alipayEbppInvoiceIsvtokenReimApplyModel)
获取报销授权令牌
当报销软件跳转支付宝报销助手,需要通过授权令牌进行身份认证,该接口用于ISV获取报销助手的授权令牌
// Import classes:
import com.alipay.v3.ApiClient;
import com.alipay.v3.ApiException;
import com.alipay.v3.Configuration;
import com.alipay.v3.util.*;
import com.alipay.v3.api.models.*;
import com.alipay.v3.api.AlipayEbppInvoiceIsvtokenReimApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("https://openapi.alipay.com");
// 设置alipayConfig参数(全局设置一次)
AlipayConfig config = new AlipayConfig();
config.setAppId("app_id");
config.setPrivateKey("private_key");
config.setAlipayPublicKey("alipay_public_key");
config.setEncryptKey("encrypt_key");
defaultClient.setAlipayConfig(config);
AlipayEbppInvoiceIsvtokenReimApi apiInstance = new AlipayEbppInvoiceIsvtokenReimApi(defaultClient);
AlipayEbppInvoiceIsvtokenReimApplyModel alipayEbppInvoiceIsvtokenReimApplyModel = new AlipayEbppInvoiceIsvtokenReimApplyModel(); // AlipayEbppInvoiceIsvtokenReimApplyModel |
try {
AlipayEbppInvoiceIsvtokenReimApplyResponseModel result = apiInstance.apply(alipayEbppInvoiceIsvtokenReimApplyModel);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AlipayEbppInvoiceIsvtokenReimApi#apply");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
alipayEbppInvoiceIsvtokenReimApplyModel | AlipayEbppInvoiceIsvtokenReimApplyModel | [optional] |
AlipayEbppInvoiceIsvtokenReimApplyResponseModel
No authorization required
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | common response | - |
0 | 请求失败 | - |