Product Overview
Feature Description
Product Strengths
Use Cases
Basic Concept
API | Operation Description |
Searching directories and files | |
Used to continue retrieving search results | |
Used to delete a search task |
try {val searchPartContent: SearchPartContent = smh.initSearch(//search keywordskeyword = "keyword",//search scopescope = "",//file type to searchsearchTypes = listOf(SearchType.PDF))//search results list view other content in SearchPartContent entityval contents = searchPartContent.contents} catch (e: Exception) {e.printStackTrace()}
try {val searchPartContent: SearchPartContent = smh.searchMore(//search idsearchId = "FnBMS09MZ2V4UzZ5RVY3NmVUX0FtemchVFZaYmdvc2hTbUtYb180NnBzY3gyQToxNDA3NzEzOTIw",//page tagmarker = 20,)//search results list view other content in SearchPartContent entityval contents = searchPartContent.contents} catch (e: Exception) {e.printStackTrace()}
try {smh.deleteSearch(//search idsearchId = "FnBMS09MZ2V4UzZ5RVY3NmVUX0FtemchVFZaYmdvc2hTbUtYb180NnBzY3gyQToxNDA3NzEzOTIw")} catch (e: Exception) {e.printStackTrace()}
피드백