{"record":{"id":"f987db359c4f44eb","repo":"AlistGo/alist","slug":"file-ids-required","errorCode":null,"errorMessage":"file IDs required","messagePattern":"file IDs required","errorType":"validation","errorClass":null,"httpStatus":null,"severity":"error","filePath":"drivers/streamtape/driver.go","lineNumber":500,"sourceCode":"\n\tif err := d.callAPI(ctx, \"/remotedl/remove\", map[string]string{\"id\": uploadID}, nil); err != nil {\n\t\treturn nil, err\n\t}\n\treturn true, nil\n}\n\nfunc (d *Streamtape) fileInfo(ctx context.Context, args model.OtherArgs) (interface{}, error) {\n\tvar fileIDs string\n\tif data, ok := args.Data.(map[string]interface{}); ok {\n\t\tif ids, ok := data[\"file_ids\"].(string); ok {\n\t\t\tfileIDs = ids\n\t\t}\n\t}\n\tif fileIDs == \"\" {\n\t\tfileIDs = fileIDFromObjID(args.Obj.GetID())\n\t}\n\tif fileIDs == \"\" {\n\t\treturn nil, fmt.Errorf(\"file IDs required\")\n\t}\n\n\tvar result fileInfoResult\n\tif err := d.callAPI(ctx, \"/file/info\", map[string]string{\"file\": fileIDs}, &result); err != nil {\n\t\treturn nil, err\n\t}\n\treturn result, nil\n}\n\nfunc (d *Streamtape) thumbnail(ctx context.Context, args model.OtherArgs) (interface{}, error) {\n\tfileID := fileIDFromObjID(args.Obj.GetID())\n\tif fileID == \"\" {\n\t\treturn nil, fmt.Errorf(\"file ID required\")\n\t}\n\n\tvar result string\n\tif err := d.callAPI(ctx, \"/file/getsplash\", map[string]string{\"file\": fileID}, &result); err != nil {\n\t\treturn nil, err","sourceCodeStart":482,"sourceCodeEnd":518,"githubUrl":"https://github.com/AlistGo/alist/blob/843d9dc8149126976b2625911e45a4d3ffd6f2f5/drivers/streamtape/driver.go#L482-L518","documentation":"Error \"file IDs required\" thrown in AlistGo/alist.","triggerScenarios":"Thrown at drivers/streamtape/driver.go:500 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Supply the required field in the request or storage configuration and retry the operation."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"843d9dc8149126976b2625911e45a4d3ffd6f2f5","analyzedAt":"2026-08-15T12:14:11.722Z","schemaVersion":2},"datasetVersion":"2026-08-15T22:17:37.221Z"}