当前位置:网站首页>Pinduoduo flag insertion remarks API
Pinduoduo flag insertion remarks API
2022-07-05 12:45:00 【QQ541645121】
git Code address :https://gitee.com/elton_xia/pdd-order-flag.git
Pinduoduo official service provider , It can dock all kinds of 【 Express website 、 Gift net 】 And other business scenario requirements system .
Automatically flag store orders , It is used for merchants and users to differentiate shipment .
public class PopClientDemo {
public static void main(String[] args) throws Exception {
String clientId = "your clientId";
String clientSecret = "your clientSecret";
String accessToken = "your accessToken";
PopClient client = new PopHttpClient(clientId, clientSecret);
PddOrderListGetRequest request = new PddOrderListGetRequest();
request.setOrderStatus(1);
request.setRefundStatus(1);
request.setStartConfirmAt(1L);
request.setEndConfirmAt(1L);
request.setPage(1);
request.setPageSize(1);
request.setTradeType(1);
request.setUseHasNext(false);
PddOrderListGetResponse response = client.syncInvoke(request, accessToken);
System.out.println(JsonUtil.transferToJson(response));
}
}
边栏推荐
- MySQL index - extended data
- Introduction to relational model theory
- 10 minute fitness method reading notes (1/5)
- Distributed solution - distributed session consistency problem
- Instance + source code = see through 128 traps
- MySQL function
- Add a new cloud disk to Huawei virtual machine
- OPPO小布推出预训练大模型OBERT,晋升KgCLUE榜首
- Learning items
- Sqoop import and export operation
猜你喜欢
Redis highly available slice cluster
JDBC -- use JDBC connection to operate MySQL database
研究:数据安全工具在 60% 的情况下无法抵御勒索软件
About cache exceptions: solutions for cache avalanche, breakdown, and penetration
ZABBIX ODBC database monitoring
ActiveMQ installation and deployment simple configuration (personal test)
MySQL index (1)
2021.12.16-2021.12.20 empty four hand transaction records
SAP 自开发记录用户登录日志等信息
UNIX socket advanced learning diary - advanced i/o functions
随机推荐
Distance measuring sensor chip 4530a used in home intelligent lighting
ZABBIX agent2 monitors mongodb templates and configuration operations
以VMware创新之道,重塑多云产品力
MySQL storage engine
Storage Basics
10 minute fitness method reading notes (2/5)
About cache exceptions: solutions for cache avalanche, breakdown, and penetration
MySQL function
Kotlin function
Time conversion error
ZABBIX monitors mongodb templates and configuration operations
Oppo Xiaobu launched Obert, a large pre training model, and promoted to the top of kgclue
Detailed steps for upgrading window mysql5.5 to 5.7.36
Resnet+attention project complete code learning
Deep discussion on the decoding of sent protocol
Transactions from December 27 to 28, 2021
Redis cluster configuration
Just a coincidence? The mysterious technology of apple ios16 is actually the same as that of Chinese enterprises five years ago!
超高效!Swagger-Yapi的秘密
JDBC exercise - query data encapsulated into object return & simple login demo