소프트웨어를 설치하지 않고도 명령줄이나 Bash 스크립트에서 직접 GroupDocs.Rewriter REST API와 상호 작용할 수 있습니다. 전문 카피라이터 수준의 품질로 텍스트와 문서를 자동으로 다시 표현합니다.
무료 평가판 시작GroupDocs.Rewriter은 의미를 완전히 보존하면서 텍스트를 다시 표현하는 쉽고 다재다능한 온라인 서비스입니다. 고급 AI가 텍스트를 읽고 이해한 뒤 다양한 표현으로 다시 작성하여 원래 의미를 잃지 않으면서 표절 없는 결과물을 제공합니다. 백그라운드 프로세스는 매우 복잡하고 리소스를 많이 사용하지만, 수식이나 머신러닝, 부하에 대해 걱정하실 필요 없습니다 – 우리 클라우드 서비스가 모든 작업을 수행합니다.
이 서비스는 소프트웨어를 설치하지 않고도 접근할 수 있는 다재다능하고 사용하기 쉬운 REST API를 제공합니다. cURL 명령을 사용하고 이를 스크립트로 결합하면 복잡한 작업을 수행할 수 있습니다. 또한 Postman와 같은 타사 REST API 도구를 사용할 수도 있습니다. 이를 통해 GroupDocs.Rewriter을 인터넷 연결이 가능한 모든 플랫폼에서 사용할 수 있으며, 아직 SDK에 포함되지 않은 플랫폼에서도 이용할 수 있습니다.
GroupDocs.Rewriter는 HTTP 요청 및 응답을 처리할 수 있는 모든 프로그래밍 언어로 작성된 애플리케이션에 쉽게 통합될 수 있는 REST API입니다. 또한 Google Cloud, Drive, DropBox, Amazon S3와 같은 모든 주요 클라우드 스토리지 서비스를 별도의 종속성 없이 기본적으로 지원합니다.
//Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
curl -X POST "https://api.groupdocs.cloud/v1.0/rewriter/document" \
-H "Authorization: Bearer TOKEN" \
-H "Content-Type: application/json" \
-d "'[{\"format\": \"docx\", \"language\": \"en\", \"name\": \"test.docx\", \"folder\": \"\", \"savepath\": \"\", \"savefile\": \"rewrited.docx\", \"storage\": \"First Storage\"}]'"
and response
{
"status": "ok",
"message": "word file saved successfully"
}
GroupDocs.Rewriter Cloud API는 모든 주요 프로그래밍 언어에 대한 자세한 개발자 레퍼런스와 실시간 코드 예제를 제공하여 API 기능을 즉시 활용할 수 있도록 합니다. GroupDocs Cloud에서 무료 계정을 생성하고 APP SID 및 키 정보를 받아 GroupDocs Cloud API와 통신하면, cURL 명령을 사용하여 모든 플랫폼에서 API 요청을 수행할 준비가 됩니다.
//Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
curl -X POST "https://api.groupdocs.cloud/v1.0/rewriter/text" \
-H "Authorization: Bearer TOKEN" \
-H "Content-Type: application/json" \
-d "'[{\"language\": \"en-fr\", \"text\": \"The client’s mission is to make the world a healthier place and to make traveling and visiting public places safer and more comfortable for people.\"}]'"
//and response
{
"status": "ok",
"message": "Text rewrited successfully",
"result": "The mission of the client is to make travel and visiting public spaces safer and more convenient for people."
}