{"id":19419894,"url":"https://github.com/organization/kotlininside","last_synced_at":"2025-04-24T14:32:00.974Z","repository":{"id":35352949,"uuid":"211122386","full_name":"organization/KotlinInside","owner":"organization","description":"비공식 디시인사이드 API (Kotlin (Java)) / Unofficial DCInside API written in Kotlin","archived":false,"fork":false,"pushed_at":"2024-05-24T12:25:01.000Z","size":3329,"stargazers_count":70,"open_issues_count":29,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-03T06:22:10.113Z","etag":null,"topics":["api","dc","dc-api","dcinside","dcinside-api","hacktoberfest","java","java-kotlin","kotlin","kotlin-java","kotlininside","library"],"latest_commit_sha":null,"homepage":"https://organization.github.io/KotlinInside/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/organization.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2019-09-26T15:29:13.000Z","updated_at":"2025-03-18T15:58:27.000Z","dependencies_parsed_at":"2024-11-10T13:20:11.802Z","dependency_job_id":"36ae17bc-78f0-4c5f-9582-641e6d3b5f8c","html_url":"https://github.com/organization/KotlinInside","commit_stats":null,"previous_names":[],"tags_count":46,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/organization%2FKotlinInside","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/organization%2FKotlinInside/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/organization%2FKotlinInside/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/organization%2FKotlinInside/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/organization","download_url":"https://codeload.github.com/organization/KotlinInside/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250643479,"owners_count":21464184,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["api","dc","dc-api","dcinside","dcinside-api","hacktoberfest","java","java-kotlin","kotlin","kotlin-java","kotlininside","library"],"created_at":"2024-11-10T13:19:37.323Z","updated_at":"2025-04-24T14:32:00.133Z","avatar_url":"https://github.com/organization.png","language":"Kotlin","readme":"# *KotlinInside* [![Build Status](https://github.com/organization/KotlinInside/workflows/Java%20CI/badge.svg)](https://github.com/organization/KotlinInside/actions) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/be.zvz/KotlinInside/badge.svg)](https://maven-badges.herokuapp.com/maven-central/be.zvz/KotlinInside)\n\n\n**Kotlin**으로 작성한 **디시인사이드 비공식 API**입니다.\n\n[**API 문서**](https://organization.github.io/KotlinInside/)\n\n### Gradle\n\n#### \u003c Gradle 7\n\n```groovy\ncompile 'be.zvz:KotlinInside:1.16.2'\n```\n\n#### Gradle 7+\n\n```groovy\nimplementation 'be.zvz:KotlinInside:1.16.2'\n```\n\n### Maven\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003ebe.zvz\u003c/groupId\u003e\n    \u003cartifactId\u003eKotlinInside\u003c/artifactId\u003e\n    \u003cversion\u003e1.16.2\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### 라이브러리 최소 요구사항\n\n- **Java 1.8 (Java 8)** 이상 필요\n- **Kotlin 1.9+** 권장\n- **Android에서 사용 가능**\n- **Java에서도 사용 가능 (타 JVM 계열 언어에서도 사용 가능)**\n\n### 라이브러리 컴파일 최소 요구사항\n\n- **Java 1.8 (Java 8)** 이상 필요\n\n## 예제\n\n### Init\n\n유동 닉네임\n\n```kotlin\nKotlinInside.createInstance(\n    Anonymous(\"이름\", \"비밀번호\"),\n    DefaultHttpClient()\n)\n```\n\n고정 닉네임\n\n```kotlin\nKotlinInside.createInstance(\n    LoginUser(\"아이디\", \"비밀번호\"),\n    DefaultHttpClient()\n)\n```\n\n### 글 목록 받아오기\n\n```kotlin\nval articleList = ArticleList(\"hit\", 1)\narticleList.request()\n\nval gallList = articleList.getGallList() // 글 목록\nval gallInfo = articleList.getGallInfo() // 갤러리 정보\n\nprintln(gallInfo)\ngallList.forEach {\n    println(it)\n}\n```\n\n### 글 읽기\n\n```kotlin\nval articleRead = ArticleRead(\"hit\", 1)\narticleRead.request()\n\nprintln(articleRead.getViewInfo())\nprintln(articleRead.getViewMain())\n```\n\n### 더 자세한 예제는 [**테스트 코드**](https://github.com/organization/KotlinInside/blob/master/src/test/kotlin/be/zvz/kotlininside/KotlinInsideTest.kt) 참고\n\n## 이 라이브러리를 사용 중인 프로젝트\n\n- [***OpenDC***](https://github.com/organization/OpenDC)\n\n## 도움이 된 라이브러리\n\n- [***goinside***](https://github.com/geeksbaek/goinside)\n- [***pyinside***](https://github.com/Jeongsj/pyinside)\n\n## 라이선스\n\n[**GPLv3**](https://github.com/organization/KotlinInside/blob/master/LICENSE)\n\n## 본 라이브러리에 포함되어 있는 라이브러리\n\n- [***lavaplayer*** - JsonBrowser](https://github.com/sedmelluq/lavaplayer/blob/master/main/src/main/java/com/sedmelluq/discord/lavaplayer/tools/JsonBrowser.java)\n```\nCopyright 2019 sedmelluq. All rights reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n```\n - [***MigBase64*** - fork (Miha-x64)](https://github.com/Miha-x64/migbase64/tree/smaller-static)\n```\n Licence (BSD):\n ==============\n\n Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (base64 @ miginfocom . com)\n All rights reserved.\n\n Redistribution and use in source and binary forms, with or without modification,\n are permitted provided that the following conditions are met:\n Redistributions of source code must retain the above copyright notice, this list\n of conditions and the following disclaimer.\n Redistributions in binary form must reproduce the above copyright notice, this\n list of conditions and the following disclaimer in the documentation and/or other\n materials provided with the distribution.\n Neither the name of the MiG InfoCom AB nor the names of its contributors may be\n used to endorse or promote products derived from this software without specific\n prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\n OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\n OF SUCH DAMAGE.\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forganization%2Fkotlininside","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Forganization%2Fkotlininside","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forganization%2Fkotlininside/lists"}