# k3cloud-api-dart **Repository Path**: joshualley/k3cloud-api-dart ## Basic Information - **Project Name**: k3cloud-api-dart - **Description**: Dart 版本的 Kingdee Cloud API - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-11-09 - **Last Updated**: 2024-05-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### A dart version's client of Kingdee Cloud API. ### Example: 1. Login ```dart var loginInfo = await KdApi.login("http://Your Server IP", "60d19671dd1820", "account", "password"); if (!loginInfo.isLoginSuccess) { debugPrint("login failure!"); return; } ``` 2. Query ```dart var resp = await KdApi.query(formId: "SAL_SALEORDER", fieldKeys: ["FBillNo", "FCustId"]); debugPrint(resp.toString()); ```