{"id":38670,"date":"2024-11-01T19:08:44","date_gmt":"2024-11-01T19:08:44","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=38670"},"modified":"2024-11-26T06:43:39","modified_gmt":"2024-11-26T06:43:39","slug":"django-%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c-api-%ec%9d%b8%ec%a6%9d-%eb%b0%8f-%ea%b6%8c%ed%95%9c-%ea%b4%80%eb%a6%ac-%ea%b5%ac%ed%98%84%ed%95%98%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/38670\/","title":{"rendered":"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30"},"content":{"rendered":"<p><body><\/p>\n<p>Django\ub294 \ud30c\uc774\uc36c\uc73c\ub85c \uc791\uc131\ub41c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube60\ub974\uace0 \ud6a8\uc728\uc801\uc73c\ub85c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ub2e4\uc591\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Django\ub97c \uc774\uc6a9\ud558\uc5ec RESTful API \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac\ub97c \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>1. Django \ud504\ub85c\uc81d\ud2b8 \uc124\uc815\ud558\uae30<\/h2>\n<p>\uba3c\uc800 Django \ud504\ub85c\uc81d\ud2b8\ub97c \uc124\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Django \ud504\ub808\uc784\uc6cc\ud06c\uc640 Django REST Framework(DRF)\ub97c \uc124\uce58\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>pip install django djangorestframework<\/code><\/pre>\n<p>\uc774\uc81c \uc0c8\ub85c\uc6b4 Django \ud504\ub85c\uc81d\ud2b8\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>django-admin startproject myproject<\/code><\/pre>\n<p>\uc774\ud6c4 \uc0dd\uc131\ub41c \ud504\ub85c\uc81d\ud2b8 \ub514\ub809\ud1a0\ub9ac\ub85c \uc774\ub3d9\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>cd myproject<\/code><\/pre>\n<p>\uc774\uc81c Django \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc0dd\uc131\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>python manage.py startapp myapp<\/code><\/pre>\n<p>\ud504\ub85c\uc81d\ud2b8\uc758 <code>settings.py<\/code> \ud30c\uc77c\uc5d0 <code>myapp<\/code>\uacfc <code>rest_framework<\/code>\ub97c INSTALLED_APPS\uc5d0 \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>INSTALLED_APPS = [\n        ...\n        'rest_framework',\n        'myapp',\n    ]<\/code><\/pre>\n<h2>2. \ubaa8\ub378 \uc0dd\uc131\ud558\uae30<\/h2>\n<p>\uc774\uc81c API\uc5d0\uc11c \uc0ac\uc6a9\ud560 \ubaa8\ub378\uc744 \uc0dd\uc131\ud574\ubd05\uc2dc\ub2e4. <code>models.py<\/code> \ud30c\uc77c\uc744 \uc5f4\uc5b4 \ub2e4\uc74c\uacfc \uac19\uc774 \uc791\uc131\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>from django.db import models\n\nclass User(models.Model):\n    username = models.CharField(max_length=150, unique=True)\n    password = models.CharField(max_length=128)\n    email = models.EmailField(unique=True)\n\n    def __str__(self):\n        return self.username<\/code><\/pre>\n<p>\ubaa8\ub378\uc744 \ub9cc\ub4e4\uc5c8\uc73c\uba74 \uc774\uc81c \ub9c8\uc774\uadf8\ub808\uc774\uc158\uc744 \uc2e4\ud589\ud558\uc5ec \ub370\uc774\ud130\ubca0\uc774\uc2a4\uc5d0 \ubc18\uc601\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>python manage.py makemigrations\npython manage.py migrate<\/code><\/pre>\n<h2>3. Serializer \uc0dd\uc131\ud558\uae30<\/h2>\n<p>\ubaa8\ub378\uc744 JSON \ud615\uc2dd\uc73c\ub85c \ubcc0\ud658\ud558\uae30 \uc704\ud574 serializer\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. <code>serializers.py<\/code> \ud30c\uc77c\uc744 \uc0dd\uc131\ud558\uace0 \ub2e4\uc74c\uacfc \uac19\uc774 \uc791\uc131\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>from rest_framework import serializers\nfrom .models import User\n\nclass UserSerializer(serializers.ModelSerializer):\n    class Meta:\n        model = User\n        fields = ('id', 'username', 'email')<\/code><\/pre>\n<h2>4. \ubdf0 \uc0dd\uc131\ud558\uae30<\/h2>\n<p>\uc774\uc81c API\uc758 \uc5d4\ub4dc\ud3ec\uc778\ud2b8\ub97c \ub9cc\ub4e4\uae30 \uc704\ud574 \ubdf0\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4. <code>views.py<\/code> \ud30c\uc77c\uc744 \uc5f4\uace0 \ub2e4\uc74c\uacfc \uac19\uc774 \uc791\uc131\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>from rest_framework import viewsets\nfrom .models import User\nfrom .serializers import UserSerializer\n\nclass UserViewSet(viewsets.ModelViewSet):\n    queryset = User.objects.all()\n    serializer_class = UserSerializer<\/code><\/pre>\n<h2>5. URL \ub77c\uc6b0\ud305 \uc124\uc815\ud558\uae30<\/h2>\n<p>API\uc758 URL\uc744 \uc124\uc815\ud558\uae30 \uc704\ud574 <code>urls.py<\/code> \ud30c\uc77c\uc744 \uc0dd\uc131\ud558\uace0 \ub2e4\uc74c\uacfc \uac19\uc774 \uc791\uc131\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>from django.urls import path, include\nfrom rest_framework.routers import DefaultRouter\nfrom .views import UserViewSet\n\nrouter = DefaultRouter()\nrouter.register(r'users', UserViewSet)\n\nurlpatterns = [\n    path('', include(router.urls)),\n]<\/code><\/pre>\n<h2>6. \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30<\/h2>\n<p>Django REST Framework\uc5d0\uc11c\ub294 \ub2e4\uc591\ud55c \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uae30\ub2a5\uc744 \uc9c0\uc6d0\ud569\ub2c8\ub2e4. \uc5ec\uae30\uc5d0\uc11c\ub294 \uae30\ubcf8 \uc778\uc99d\uacfc \ud1a0\ud070 \uc778\uc99d\uc744 \uc0ac\uc6a9\ud558\uc5ec API \uc778\uc99d\uc744 \uad6c\ud604\ud569\ub2c8\ub2e4.<\/p>\n<h3>6.1. Django REST Framework\uc758 \ud1a0\ud070 \uc778\uc99d \ud65c\uc131\ud654<\/h3>\n<p>\uc6b0\uc120, <code>settings.py<\/code> \ud30c\uc77c\uc5d0\uc11c OAuth2\ub97c \uc704\ud55c \uc571\uc744 \uc124\uce58\ud558\uace0 \ub4f1\ub85d\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>INSTALLED_APPS = [\n        ...\n        'rest_framework.authtoken',\n    ]<\/code><\/pre>\n<p>\ub610\ud55c, DRF\uc758 \uc778\uc99d \ud074\ub798\uc2a4\ub97c \uc124\uc815\ud574\uc90d\ub2c8\ub2e4.<\/p>\n<pre><code>REST_FRAMEWORK = {\n        'DEFAULT_AUTHENTICATION_CLASSES': [\n            'rest_framework.authentication.TokenAuthentication',\n        ],\n        'DEFAULT_PERMISSION_CLASSES': [\n            'rest_framework.permissions.IsAuthenticated',\n        ],\n    }<\/code><\/pre>\n<h3>6.2. \uc0ac\uc6a9\uc790\uc5d0\uac8c \ud1a0\ud070 \uc0dd\uc131\ud558\uae30<\/h3>\n<p>\uc0ac\uc6a9\uc790\uac00 \ub85c\uadf8\uc778 \ud560 \ub54c\ub9c8\ub2e4 \ud1a0\ud070\uc744 \uc0dd\uc131\ud558\ubbc0\ub85c, \ub85c\uadf8\uc778 \ubdf0\ub97c \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>from django.contrib.auth import authenticate\nfrom rest_framework.authtoken.models import Token\nfrom rest_framework.response import Response\nfrom rest_framework.views import APIView\nfrom rest_framework import status\n\nclass LoginView(APIView):\n    def post(self, request):\n        username = request.data.get('username')\n        password = request.data.get('password')\n        user = authenticate(username=username, password=password)\n        if user:\n            token, created = Token.objects.get_or_create(user=user)\n            return Response({'token': token.key}, status=status.HTTP_200_OK)\n        return Response({'error': 'Invalid Credentials'}, status=status.HTTP_400_BAD_REQUEST)<\/code><\/pre>\n<p>\ub85c\uadf8\uc778 \ubdf0\ub97c URL\uc5d0 \ucd94\uac00\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>urlpatterns = [\n        ...\n        path('login\/', LoginView.as_view(), name='login'),\n    ]<\/code><\/pre>\n<h2>7. API \ud14c\uc2a4\ud2b8\ud558\uae30<\/h2>\n<p>\uc774\uc81c \ubaa8\ub4e0 \uc124\uc815\uc774 \uc644\ub8cc\ub418\uc5c8\uc2b5\ub2c8\ub2e4. Django \uc11c\ubc84\ub97c \uc2e4\ud589\ud558\uace0 API\ub97c \ud14c\uc2a4\ud2b8\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>python manage.py runserver<\/code><\/pre>\n<p>Postman \ub610\ub294 Curl\uc744 \uc0ac\uc6a9\ud558\uc5ec API\ub97c \ud14c\uc2a4\ud2b8\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\ub97c \ub4f1\ub85d\ud55c \ud6c4\uc5d0 \ub85c\uadf8\uc778 \uc5d4\ub4dc\ud3ec\uc778\ud2b8\uc5d0 POST \uc694\uccad\uc744 \ubcf4\ub0b4\uc11c \ud1a0\ud070\uc744 \ubc1b\uc544\uc635\ub2c8\ub2e4.<\/p>\n<h2>7. \uacb0\ub860<\/h2>\n<p>Django\uc640 Django REST Framework\ub97c \uc774\uc6a9\ud558\uba74 \ube60\ub974\uac8c API \uc11c\ubc84\ub97c \uad6c\ucd95\ud560 \uc218 \uc788\uace0, \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac\ub97c \uc190\uc27d\uac8c \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ubcf8 \uae00\uc5d0\uc11c \ub2e4\ub8ec \ub0b4\uc6a9\uc744 \ubc14\ud0d5\uc73c\ub85c \ub354 \ub2e4\uc591\ud55c \uae30\ub2a5\uc744 \ucd94\uac00\ud558\uc5ec API\ub97c \ud655\uc7a5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>\uc5ec\uae30\uae4c\uc9c0\uac00 Django \uc11c\ubc84 \uac1c\ubc1c \ubc0f API \uc778\uc99d\uacfc \uad8c\ud55c \uad00\ub9ac\uc5d0 \ub300\ud55c \uac15\uc88c\uc600\uc2b5\ub2c8\ub2e4. \ud5a5\ud6c4\uc5d0\ub294 OAuth2\uc640 JWT(JSON Web Token) \uc778\uc99d \ubc29\uc2dd\uc5d0 \ub300\ud574\uc11c\ub3c4 \uc0b4\ud3b4\ubcf4\ub294 \uae00\uc744 \uc791\uc131\ud560 \uc608\uc815\uc785\ub2c8\ub2e4.<\/p>\n<h2>8. \ucc38\uace0 \uc790\ub8cc<\/h2>\n<ul>\n<li><a href=\"https:\/\/www.djangoproject.com\/\">Django \uacf5\uc2dd \uc0ac\uc774\ud2b8<\/a><\/li>\n<li><a href=\"https:\/\/www.django-rest-framework.org\/\">Django REST Framework \uacf5\uc2dd \ubb38\uc11c<\/a><\/li>\n<li><a href=\"https:\/\/www.django-rest-framework.org\/api-guide\/authentication\/#token-authentication\">DRF \ud1a0\ud070 \uc778\uc99d \ubb38\uc11c<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Django\ub294 \ud30c\uc774\uc36c\uc73c\ub85c \uc791\uc131\ub41c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube60\ub974\uace0 \ud6a8\uc728\uc801\uc73c\ub85c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ub2e4\uc591\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Django\ub97c \uc774\uc6a9\ud558\uc5ec RESTful API \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac\ub97c \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. Django \ud504\ub85c\uc81d\ud2b8 \uc124\uc815\ud558\uae30 \uba3c\uc800 Django \ud504\ub85c\uc81d\ud2b8\ub97c \uc124\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Django \ud504\ub808\uc784\uc6cc\ud06c\uc640 Django REST Framework(DRF)\ub97c \uc124\uce58\ud569\ub2c8\ub2e4. pip install django djangorestframework \uc774\uc81c \uc0c8\ub85c\uc6b4 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/38670\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[185],"tags":[],"class_list":["post-38670","post","type-post","status-publish","format-standard","hentry","category-django"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/38670\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Django\ub294 \ud30c\uc774\uc36c\uc73c\ub85c \uc791\uc131\ub41c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube60\ub974\uace0 \ud6a8\uc728\uc801\uc73c\ub85c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ub2e4\uc591\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Django\ub97c \uc774\uc6a9\ud558\uc5ec RESTful API \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac\ub97c \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. Django \ud504\ub85c\uc81d\ud2b8 \uc124\uc815\ud558\uae30 \uba3c\uc800 Django \ud504\ub85c\uc81d\ud2b8\ub97c \uc124\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Django \ud504\ub808\uc784\uc6cc\ud06c\uc640 Django REST Framework(DRF)\ub97c \uc124\uce58\ud569\ub2c8\ub2e4. pip install django djangorestframework \uc774\uc81c \uc0c8\ub85c\uc6b4 &hellip; \ub354 \ubcf4\uae30 &quot;DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/38670\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T19:08:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:43:39+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/38670\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38670\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30\",\"datePublished\":\"2024-11-01T19:08:44+00:00\",\"dateModified\":\"2024-11-26T06:43:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38670\/\"},\"wordCount\":61,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"DJango\uc11c\ubc84\uac1c\ubc1c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/38670\/\",\"url\":\"https:\/\/atmokpo.com\/w\/38670\/\",\"name\":\"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T19:08:44+00:00\",\"dateModified\":\"2024-11-26T06:43:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38670\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/38670\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/38670\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/38670\/","og_locale":"ko_KR","og_type":"article","og_title":"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Django\ub294 \ud30c\uc774\uc36c\uc73c\ub85c \uc791\uc131\ub41c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube60\ub974\uace0 \ud6a8\uc728\uc801\uc73c\ub85c \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ub2e4\uc591\ud55c \ub3c4\uad6c\uc640 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Django\ub97c \uc774\uc6a9\ud558\uc5ec RESTful API \uc11c\ubc84\ub97c \uad6c\ucd95\ud558\uace0, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac\ub97c \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. Django \ud504\ub85c\uc81d\ud2b8 \uc124\uc815\ud558\uae30 \uba3c\uc800 Django \ud504\ub85c\uc81d\ud2b8\ub97c \uc124\uc815\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Django \ud504\ub808\uc784\uc6cc\ud06c\uc640 Django REST Framework(DRF)\ub97c \uc124\uce58\ud569\ub2c8\ub2e4. pip install django djangorestframework \uc774\uc81c \uc0c8\ub85c\uc6b4 &hellip; \ub354 \ubcf4\uae30 \"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/38670\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T19:08:44+00:00","article_modified_time":"2024-11-26T06:43:39+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/38670\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/38670\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30","datePublished":"2024-11-01T19:08:44+00:00","dateModified":"2024-11-26T06:43:39+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/38670\/"},"wordCount":61,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["DJango\uc11c\ubc84\uac1c\ubc1c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/38670\/","url":"https:\/\/atmokpo.com\/w\/38670\/","name":"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T19:08:44+00:00","dateModified":"2024-11-26T06:43:39+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/38670\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/38670\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/38670\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"DJango \uc11c\ubc84\uac1c\ubc1c, API \uc778\uc99d \ubc0f \uad8c\ud55c \uad00\ub9ac \uad6c\ud604\ud558\uae30"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":38696,"url":"https:\/\/atmokpo.com\/w\/38696\/","url_meta":{"origin":38670,"position":0},"title":"DJango \uc11c\ubc84\uac1c\ubc1c, \ub2e4\uc591\ud55c \uce90\uc2dc \ubc31\uc5d4\ub4dc \uc124\uc815\ud558\uae30 (Memcached, Redis \ub4f1)","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c 1. \uce90\uc2dc\uc758 \ud544\uc694\uc131 \uc6f9 \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0\uc11c \uc131\ub2a5\uc740 \ub9e4\uc6b0 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \ud5a5\uc0c1\uc2dc\ud0a4\uace0, \uc11c\ubc84 \uc790\uc6d0 \uc18c\ube44\ub97c \uc904\uc774\uae30 \uc704\ud574 caching\uc740 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \uce90\uc2dc\ub97c \uc0ac\uc6a9\ud558\uba74 \ub370\uc774\ud130\ubca0\uc774\uc2a4\ub098 \uc18c\uc2a4 \uc2dc\uc2a4\ud15c\uc5d0 \ub300\ud55c \uc694\uccad\uc744 \uc904\uc774\uace0, \uc774\uc804\uc5d0 \uc800\uc7a5\ub41c \uacb0\uacfc\ub97c \ube60\ub974\uac8c \ubc18\ud658\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub85c \uc778\ud574, \uc751\ub2f5 \uc2dc\uac04\uc774 \uc904\uc5b4\ub4e4\uace0 \uc11c\ubc84 \ubd80\ud558\ub3c4 \uac10\uc18c\ud569\ub2c8\ub2e4. Django\ub294\u2026","rel":"","context":"&quot;DJango\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"DJango\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/django%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":38622,"url":"https:\/\/atmokpo.com\/w\/38622\/","url_meta":{"origin":38670,"position":1},"title":"DJango \uc11c\ubc84\uac1c\ubc1c, Django \ud15c\ud50c\ub9bf \uc2dc\uc2a4\ud15c\uc758 \uae30\ubcf8 \uc6d0\ub9ac","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"Django\ub294 \ud30c\uc774\uc36c\uc73c\ub85c \uc791\uc131\ub41c \uc6f9 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ube60\ub978 \uac1c\ubc1c\uacfc \uc2ec\ud50c\ud55c \ub514\uc790\uc778\uc744 \ud2b9\uc9d5\uc73c\ub85c \ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Django\uc758 \ud15c\ud50c\ub9bf \uc2dc\uc2a4\ud15c\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. Django \ud15c\ud50c\ub9bf \uc2dc\uc2a4\ud15c\uc740 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \ud504\ub860\ud2b8\uc5d4\ub4dc\ub97c \uad6c\uc131\ud558\ub294 \uc911\uc694\ud55c \uc694\uc18c\ub85c, \ub370\uc774\ud130 \ud45c\ud604\uc744 \uc704\ud55c HTML\uc744 \uc0dd\uc131\ud569\ub2c8\ub2e4. \ud15c\ud50c\ub9bf\uc740 \ud074\ub77c\uc774\uc5b8\ud2b8\uc5d0\uac8c \ubcf4\uc5ec\uc904 \ub0b4\uc6a9\uc744 \uc815\uc758\ud558\uba70, \ucf54\ub4dc\uc758 \uc7ac\uc0ac\uc6a9\uc131\uc744 \ub192\uc774\uace0 HTML\uacfc \ud30c\uc774\uc36c \ucf54\ub4dc\ub97c \ubd84\ub9ac\ud558\ub294 \ub370 \ub3c4\uc6c0\uc744 \uc90d\ub2c8\ub2e4. 1. Django \ud15c\ud50c\ub9bf\u2026","rel":"","context":"&quot;DJango\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"DJango\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/django%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":38634,"url":"https:\/\/atmokpo.com\/w\/38634\/","url_meta":{"origin":38670,"position":2},"title":"DJango \uc11c\ubc84\uac1c\ubc1c, Django\uc758 \ub85c\uae45 \uc2dc\uc2a4\ud15c \uc774\ud574\ud558\uae30","author":"root","date":"2024\ub144 11\uc6d4 01\uc77c","format":false,"excerpt":"\uc791\uc131\uc77c: 2023\ub144 10\uc6d4 1\uc77c \uc791\uc131\uc790: \uc870\uad11\ud615 \ubaa9\ucc28 1. Django \ub85c\uae45 \uc2dc\uc2a4\ud15c \uac1c\uc694 2. \ub85c\uae45\uc758 \uc911\uc694\uc131 3. Django \ub85c\uae45 \uc124\uc815\ud558\uae30 4. \ub85c\uae45 \uba54\uc2dc\uc9c0 \ub808\ubca8 \uc774\ud574\ud558\uae30 5. \ub2e4\uc591\ud55c \ub85c\uae45 \ud578\ub4e4\ub7ec 6. \ucee4\uc2a4\ud140 \ub85c\uac70 \ub9cc\ub4e4\uae30 7. \ub85c\uae45 \uc5d0\ub7ec \ucc98\ub9ac\ud558\uae30 8. \uc2e4\uc6a9\uc801\uc778 \uc608\uc81c 9. Django \ub85c\uae45 \uc2dc\uc2a4\ud15c \ucd5c\uc801\ud654\ud558\uae30 10. \uacb0\ub860 1. Django \ub85c\uae45 \uc2dc\uc2a4\ud15c\u2026","rel":"","context":"&quot;DJango\uc11c\ubc84\uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"DJango\uc11c\ubc84\uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/django%ec%84%9c%eb%b2%84%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":41939,"url":"https:\/\/atmokpo.com\/w\/41939\/","url_meta":{"origin":38670,"position":3},"title":"017. SaaS \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc544\ud0a4\ud14d\ucc98, API \uc124\uacc4\uc640 \uad00\ub9ac","author":"root","date":"2024\ub144 11\uc6d4 08\uc77c","format":false,"excerpt":"\uc791\uc131\uc77c: 2023\ub144 10\uc6d4 30\uc77c \uc800\uc790: \uc870\uad11\ud615 1. SaaS\ub780? SaaS(Software as a Service)\ub294 \ud074\ub77c\uc6b0\ub4dc\uc5d0\uc11c \ud638\uc2a4\ud305\ub418\ub294 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc778\ud130\ub137\uc744 \ud1b5\ud574 \uc81c\uacf5\ud558\ub294 \ubaa8\ub378\uc785\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\ub294 \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \ub85c\uceec\ub85c \uc124\uce58\ud558\uace0 \uad00\ub9ac\ud560 \ud544\uc694 \uc5c6\uc774 \uc6f9 \ube0c\ub77c\uc6b0\uc800\ub97c \ud1b5\ud574 \ubc14\ub85c \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc811\uadfc \ubc29\uc2dd\uc740 \uc0ac\uc6a9\uc790\uc5d0\uac8c \ub192\uc740 \uc720\uc5f0\uc131\uacfc \ube44\uc6a9 \ud6a8\uc728\uc131\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. 2. SaaS \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc544\ud0a4\ud14d\ucc98 SaaS \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc544\ud0a4\ud14d\ucc98\ub294\u2026","rel":"","context":"&quot;Saas&quot;\uc5d0\uc11c","block_context":{"text":"Saas","link":"https:\/\/atmokpo.com\/w\/category\/saas\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":41106,"url":"https:\/\/atmokpo.com\/w\/41106\/","url_meta":{"origin":38670,"position":4},"title":"11.Nest.js\ub85c RESTful API \uad6c\ucd95\ud558\uae30, Nest.js\uc5d0\uc11c \ucee8\ud2b8\ub864\ub7ec\uc640 \uc11c\ube44\uc2a4 \uad6c\ud604\ud558\uae30","author":"root","date":"2024\ub144 11\uc6d4 06\uc77c","format":false,"excerpt":"\ud604\ub300 \uc6f9 \uac1c\ubc1c\uc5d0\uc11c RESTful API\ub294 \ub370\uc774\ud130\uc640 \uc11c\ube44\uc2a4\ub97c \ud074\ub77c\uc774\uc5b8\ud2b8\uc640 \uc11c\ubc84 \uac04\uc5d0 \ud6a8\uacfc\uc801\uc73c\ub85c \uacf5\uc720\ud558\ub294 \ub370 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. Nest.js\ub294 Node.js \uae30\ubc18\uc758 \uc6f9 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \ud655\uc7a5\uc131\uacfc \uc720\uc9c0\ubcf4\uc218\uc131\uc744 \uace0\ub824\ud558\uc5ec \uc124\uacc4\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Nest.js\ub97c \uc0ac\uc6a9\ud558\uc5ec RESTful API\ub97c \uad6c\ucd95\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc54c\uc544\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \ub610\ud55c, API\uc758 \uae30\ubcf8\uc744 \uc774\ud574\ud558\uae30 \uc704\ud574 \ucee8\ud2b8\ub864\ub7ec\uc640 \uc11c\ube44\uc2a4\uc758 \uad6c\ud604 \ubc29\ubc95\uc5d0 \ub300\ud574\uc11c\ub3c4 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. Nest.js \uc18c\uac1c Nest.js\ub294\u2026","rel":"","context":"&quot;nextjs&quot;\uc5d0\uc11c","block_context":{"text":"nextjs","link":"https:\/\/atmokpo.com\/w\/category\/nextjs\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43428,"url":"https:\/\/atmokpo.com\/w\/43428\/","url_meta":{"origin":38670,"position":5},"title":"[\uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14]  \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14 \uac1c\ubc1c \ube14\ub85c\uadf8: \ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \ubc0f \uc124\uc815","author":"root","date":"2024\ub144 11\uc6d4 27\uc77c","format":false,"excerpt":"\uc548\ub155\ud558\uc138\uc694! \uc774\ubc88 \ud3ec\uc2a4\ud2b8\uc5d0\uc11c\ub294 \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14(Apache Cordova)\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud558\uc774\ube0c\ub9ac\ub4dc \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud55c \uccab \ub2e8\uacc4\ub97c \uc548\ub0b4\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ud2b9\ud788, \ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \ubc0f \uc124\uc815\uc5d0 \uc911\uc810\uc744 \ub450\uace0 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ucf54\ub974\ub3c4\ubc14\ub294 HTML, CSS, JavaScript\ub85c \ubaa8\ubc14\uc77c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc81c\uc791\ud560 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 \ud50c\ub7ab\ud3fc\uc73c\ub85c, \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0 \uac78\uccd0 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \ubc30\ud3ec\ud560 \uc218 \uc788\uac8c \ub3c4\uc640\uc90d\ub2c8\ub2e4. 1. \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14\ub780? \uc544\ud30c\uce58 \ucf54\ub974\ub3c4\ubc14\ub294 \ud558\uc774\ube0c\ub9ac\ub4dc \uc560\ud50c\ub9ac\ucf00\uc774\uc158\u2026","rel":"","context":"&quot;cordova&quot;\uc5d0\uc11c","block_context":{"text":"cordova","link":"https:\/\/atmokpo.com\/w\/category\/cordova\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38670","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=38670"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38670\/revisions"}],"predecessor-version":[{"id":38671,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38670\/revisions\/38671"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=38670"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=38670"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=38670"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}