{"id":49885297,"url":"https://github.com/leesiuuuu/tenor-sdk-v2","last_synced_at":"2026-05-15T18:04:13.008Z","repository":{"id":319677500,"uuid":"1075971433","full_name":"leesiuuuu/Tenor-SDK-v2","owner":"leesiuuuu","description":"Tenor API를 사용하기 위해 수정한 패키지","archived":false,"fork":false,"pushed_at":"2025-11-03T07:17:02.000Z","size":904,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-03T08:26:07.321Z","etag":null,"topics":["tenor-api","unity"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leesiuuuu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-14T08:28:47.000Z","updated_at":"2025-11-03T07:17:05.000Z","dependencies_parsed_at":"2025-10-19T23:22:59.477Z","dependency_job_id":"e50a84ab-f8a5-466a-96f5-e883fce13a23","html_url":"https://github.com/leesiuuuu/Tenor-SDK-v2","commit_stats":null,"previous_names":["leesiuuuu/tenor-sdk-v2"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/leesiuuuu/Tenor-SDK-v2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leesiuuuu%2FTenor-SDK-v2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leesiuuuu%2FTenor-SDK-v2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leesiuuuu%2FTenor-SDK-v2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leesiuuuu%2FTenor-SDK-v2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leesiuuuu","download_url":"https://codeload.github.com/leesiuuuu/Tenor-SDK-v2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leesiuuuu%2FTenor-SDK-v2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33074416,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["tenor-api","unity"],"created_at":"2026-05-15T18:04:09.605Z","updated_at":"2026-05-15T18:04:13.003Z","avatar_url":"https://github.com/leesiuuuu.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tenor-SDK-v2\n\n기존 Tenor에서 제공하는 [SDK](https://github.com/Tenor-Inc/tenor-unity-ar-sdk)가 v1 버전만 지원하고 있어 v2 전용 버전으로 수정한 패키지입니다.\n\n# 사용 방법\n\n**예시 프로젝트를 실행하려면 반드시 [3DI70R의 Unity-GifDecoder](https://github.com/3DI70R/Unity-GifDecoder?tab=readme-ov-file)가 필요합니다!**\n\n- 올바른 API 키로 SDK를 초기화합니다.\n- 아래 파라미터에 존재하는 올바른 요청 클래스를 생성합니다.\n- API 엔드포인트에서 정보를 가져오는 메서드를 호출합니다.\n\n```csharp\n// 트랜드 검색 예시\npublic void ExampleTrendingTenorGIF() {\n\n    // SDK 초기화\n    TenorAPI.Initialize (\"LIVDSRZULELA\");\n    \n    // 요청 데이터 세팅\n    TrendingRequest request = new TrendingRequest ();\n    request.pos = \"\";\n    request.limit = 5;\n    \n    // 코루틴으로 비동기 호출\n    StartCoroutine(TenorAPI.Trending(request, ProcessAnswers));\n    \n}\n\nvoid ProcessAnswers(Response data) {\n    // 요청 성공 시 엑션\n}\n```\n\n# 메서드\n\n`Tenor-SDK-v2`는 아래의 메서드를 제공하고 있습니다.\n\n```csharp\n  public static IEnumerator Search(SearchRequest request, DelegateResponseAnswer delegateSearch);\n  public static IEnumerator Featured(FeaturedRequest request, DelegateResponseAnswer delegateFeatured);\n  public static IEnumerator Categories(CategoriesRequest request, DelegateTagCollectionAnswer delegateCategories);\n  public static IEnumerator SearchSuggestions(SearchSuggestionsRequest request, DelegateStringAnswer delegateSearchSuggestions);\n  public static IEnumerator AutoComplete(AutoCompleteRequest request, DelegateStringAnswer delegateAutoComplete);\n  public static IEnumerator TrendingSearchTerms(TrendingTermsRequest request, DelegateStringAnswer delegateTrendingTerms);\n  public static IEnumerator RegisterShare(RegisterShareRequest request, DelegateStringAnswer delegateRegisterShare);\n```\n\n\n# 예시 프로젝트\n\n`Tenor-SDK-v2`는 아래의 예시 프로젝트를 제공하고 있습니다.\n\n- SearchExample\n- SearchSuggestionExample\n- FeaturedExample\n- TrendingTermsExample\n- CategoriesExample\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleesiuuuu%2Ftenor-sdk-v2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleesiuuuu%2Ftenor-sdk-v2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleesiuuuu%2Ftenor-sdk-v2/lists"}