Browse Source

修改示例

master
richie 2 years ago
parent
commit
4daa1338f3
  1. 11
      README.md

11
README.md

@ -13,13 +13,22 @@ operation.open();
在开启后,可以在企业数据的"数据导入"菜单看到如下图所示的API数据源入口 在开启后,可以在企业数据的"数据导入"菜单看到如下图所示的API数据源入口
![api_datasource](/screenshots/api_datasource.png) ![api_datasource](/screenshots/api_datasource.png)
### ### 创建表
```java ```java
Authentication authentication = new Authentication("#key", "#secret"); Authentication authentication = new Authentication("#key", "#secret");
DatasourceOperation operation = new DatasourceOperation(authentication); DatasourceOperation operation = new DatasourceOperation(authentication);
// // 创建表并返回表id // // 创建表并返回表id
String tableId = operation.createTable("HelloTable"); String tableId = operation.createTable("HelloTable");
```
### 更新表数据
```java
Authentication authentication = new Authentication("#key", "#secret");
DatasourceOperation operation = new DatasourceOperation(authentication);
// // 创建表并返回表id
String tableId = "tableIdText;
// 获取给该表提供数据的文件的上传地址 // 获取给该表提供数据的文件的上传地址
String fileUploadUrl = operation.requestUploadUrl(tableId); String fileUploadUrl = operation.requestUploadUrl(tableId);
// 将数据文件上传 // 将数据文件上传

Loading…
Cancel
Save