We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77fb1c5 commit 55bd474Copy full SHA for 55bd474
README.md
@@ -135,6 +135,41 @@ URL地址 `/delete`
135
|:-------:|:-----------:|:------------:|:-----------------:|
136
| id | string | Job唯一标识 | |
137
138
+
139
+### 查询任务
140
+URL地址 `/get`
141
142
+```json
143
+{
144
+ "id": "15702398321"
145
+}
146
+```
147
148
+| 参数名 | 类型 | 含义 | 备注 |
149
+|:-------:|:-----------:|:------------:|:-----------------:|
150
+| id | string | Job唯一标识 | |
151
152
153
154
+队列中有任务返回值
155
156
157
+ "code": 0,
158
+ "message": "操作成功",
159
+ "data": {
160
+ "id": "15702398321",
161
+ "body": "{\"uid\": 10829378,\"created\": 1498657365 }"
162
+ }
163
164
165
+队列为空返回值
166
167
168
169
170
+ "data": null
171
172
173
174
### 完成任务
175
URL地址 `/finish`
0 commit comments