기술 세부 사항보다 비즈니스 로직에 집중하여 GroupDocs.Rewriter API 기반의 .NET 애플리케이션을 생성합니다.
무료 평가판 시작GroupDocs.Rewriter는 의미를 완전히 보존하면서 텍스트를 다시 표현할 수 있는 사용하기 쉽고 다재다능한 온라인 서비스입니다. 첨단 AI가 텍스트를 읽고 이해한 뒤 다양한 표현으로 다시 작성하여 원래 의미를 잃지 않으면서 표절 없는 결과물을 제공합니다. 백그라운드 프로세스는 매우 복잡하고 리소스를 많이 소모하지만, 수식이나 머신러닝, 부하에 대해 걱정하실 필요 없습니다 – 우리 클라우드 서비스가 모든 작업을 수행합니다.
이 SDK는 .NET 코드와 GroupDocs.Rewriter Cloud 서비스 간의 상호작용을 크게 단순화하여 기술 세부 사항보다 비즈니스 로직에 집중할 수 있게 합니다. 연결 설정, API 요청 전송, 응답 파싱 등 모든 일상적인 작업을 처리하고, 이러한 작업들을 몇 가지 간단한 메서드로 묶어 어떤 .NET 애플리케이션에서도 사용할 수 있게 합니다. .NET SDK, 데모 애플리케이션, 문서 및 예제는 MIT 라이선스로 배포되는 오픈 소스입니다. 이를 어떤 목적이든 사용할 수 있으며 코드의 모든 부분을 변경할 수 있습니다.
.NET용 GroupDocs.Rewriter Cloud API는 주요 프로그래밍 언어 모두에 대한 자세한 개발자 가이드와 실시간 코드 예제가 제공되어, 즉시 패러프레이징 기능을 활용할 수 있습니다. 먼저 GroupDocs Cloud에서 무료 계정을 생성하고, APP SID 및 키 정보를 받아 GroupDocs Cloud API와 통신하면 SDK를 바로 사용할 수 있습니다.
//Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
public FileResponse RewriteDocument(Configuration conf)
{
string name = "test.docx";
string folder = "";
string language = "en";
string format = "docx";
string storage = "First Storage";
string saveFile = "translation.docx";
string savePath = "";
RewriterApi api = new RewriterApi(conf);
RewriteDocumentRequest request = api.CreateDocumentRequest(name, folder, language, format, storage, saveFile, savePath, masters, elements);
FileResponse response = api.RunRewritingTask(request);
return response;
}
GroupDocs.Rewriter Cloud는 모든 언어 또는 플랫폼에 쉽게 통합될 수 있는 REST API이며, HTTP 요청 및 응답을 관리할 수 있습니다. 또한 Google Cloud, Drive, DropBox 및 Amazon S3와 같은 모든 주요 클라우드 스토리지 서비스를 지원하여 의존성 없이 상호 작용할 수 있습니다.
//Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
public TextResponse TranslateText(Configuration conf)
{
string language = "en";
string 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.";
RewriterApi api = new RewriterApi(conf);
RewriteTextRequest request = api.CreateTextRequest(language, text);
TextResponse response = api.RunRewritingTextTask(request);
return response;
}
GroupDocs.Rewriter Cloud API는 SSL 보안이 적용되어 있으며, 인증 요청에는 서명과 AppSID 쿼리 매개변수 또는 OAuth 2.0 인증 헤더가 필요합니다.