GetWPSFileUploadAddress godoc @Summary 获取WPS文件上传地址 @Description WPS三阶段上传第二步:获取上传地址和临时许可 @Tags WPS集成(回调接口) @Accept json @Produce json @Param file_id path string true "文件ID" @Param X-App-ID header string true "APP_ID" @Param request body UploadAddressRequest true "上传信息" @Success 200 {object} weboffice
(c *gin.Context)
| 701 | // @Failure 500 {object} weboffice.Reply |
| 702 | // @Router /api/wps/v3/3rd/files/{file_id}/upload/address [post] |
| 703 | func GetWPSFileUploadAddress(c *gin.Context) { |
| 704 | wrapHandlerFunc(getWPSFileUploadAddress)(c) |
| 705 | } |
| 706 | |
| 707 | // executeWPSFileUpload 执行WPS文件上传 |
| 708 | func executeWPSFileUpload(c *gin.Context) (any, error) { |
nothing calls this directly
no test coverage detected