Google Play EMM API 시작하기
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Google Play EMM API는 등록 프로세스의 모든 단계를 완료하고 Google의 프로그램 참여 승인을 받은 엔터프라이즈 모바일 관리(EMM) 솔루션 제공업체만 사용할 수 있습니다.
Google Play EMM API 및 클라이언트 라이브러리 정보
Google Play EMM API는 Google Play EMM API 참조에 설명되어 있는 REST API입니다.
Google Play EMM API는 다음에서 사용할 수 있습니다.
이 사이트의 샘플 코드는 대부분 자바 클라이언트 라이브러리를 사용합니다.
Ruby 및 Python과 같은 다른 클라이언트 라이브러리를 사용하는 샘플은 GitHub 저장소의 Google 브랜치(github.com/google/play-work)에서 찾을 수 있습니다.
샘플 코드 정보
일반적인 관리 작업 가이드의 샘플 탭에서 루틴 관리 작업의 예를 확인할 수 있습니다.
다음 문서에서 샘플 코드도 확인할 수 있습니다.
EMM 개발자를 위한 예비 설정
Google 계정이 필요합니다. 또한 Google API 콘솔 또는 Google Cloud 콘솔도 사용해야 합니다. Google Play EMM API에 관한 액세스 권한이 승인되고 액세스 권한이 부여되었다고 가정하고 다음과 같은 방법으로 시작 방법을 간단히 확인할 수 있습니다.
- Google API 콘솔에 로그인합니다.
- 프로젝트를 만듭니다. 이 프로젝트에는 EMM 콘솔에서 사용할 서비스 계정과 사용자 인증 정보가 포함됩니다.
- 프로젝트에 Google Play EMM API 라이브러리를 사용 설정합니다.
- 프로젝트의 기본 서비스 계정을 만듭니다.
자세한 내용은 EMM 커뮤니티 등록을 참고하세요.
Google EMM 개발자 리소스 자세히 알아보기
Google Play EMM API 참조 문서 및 가이드 외에도 다음은 EMM 개발자를 위한 몇 가지 Google 리소스입니다.
- EMM 개발자 개요에서는 Android EMM 개발자에 관한 대략적인 정보를 제공합니다.
- EMM 커뮤니티 등록에는 등록 프로세스(Google과 협력하여 고객을 위한 Android를 지원하는 EMM)부터 고객 환경에 앱을 배포하는 것까지 개발자를 위한 단계별 세부정보가 포함되어 있습니다.
- Android 엔터프라이즈 용어에는 이 문서에 사용되는 용어가 정의되어 있습니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-08-31(UTC)
[null,null,["최종 업데이트: 2025-08-31(UTC)"],[[["\u003cp\u003eThe Google Play EMM API is exclusively for EMM solution providers approved by Google.\u003c/p\u003e\n"],["\u003cp\u003eThis REST API offers management capabilities through HTTP requests or client libraries (Java, Python, .NET, Ruby).\u003c/p\u003e\n"],["\u003cp\u003eSample code and routine management task examples are provided for developers.\u003c/p\u003e\n"],["\u003cp\u003ePreliminary setup involves using a Google Account, enabling the Google Play EMM API library, and creating a service account.\u003c/p\u003e\n"],["\u003cp\u003eGoogle offers resources like the EMM API reference, developer overview, registration details, and terminology definitions.\u003c/p\u003e\n"]]],[],null,["# Get started with the Google Play EMM API\n\nThe Google Play EMM API is available only to enterprise mobility management\n(EMM) solution providers who have completed all steps in the [registration\nprocess](/android/work/play/emm-api/register) and have been approved by Google\nto participate in the program.\n\nAbout Google Play EMM APIs and client libraries\n-----------------------------------------------\n\nThe Google Play EMM API is a REST API that's documented in the\n[Google Play EMM API reference](/android/work/play/emm-api/v1).\nThe Google Play EMM API can be used by:\n\n- Sending HTTP requests and parsing the responses.\n- Using one of the available client libraries. Google Play EMM API client libraries are available for [Java](https://developers.google.com/api-client-library/java/apis/androidenterprise/v1), [Python](https://developers.google.com/api-client-library/python/apis/androidenterprise/v1), [.NET](https://developers.google.com/api-client-library/dotnet/apis/androidenterprise/v1), and [Ruby](https://developers.google.com/api-client-library/ruby/apis/androidenterprise/v1).\n\n \u003cbr /\u003e\n\n Each download package includes a readme file (for example,\n androidenterprise/readme.html) with information about dependencies, paths,\n and other details.\n\n\u003cbr /\u003e\n\nMuch of the sample code on this site uses the\n[Java client library](https://developers.google.com/api-client-library/java/apis/androidenterprise/v1).\nSamples using other client libraries, such as Ruby and Python, can be found\nin Google's branch of the GitHub repository\n([github.com/google/play-work](https://github.com/google/play-work)).\n\nAbout sample code\n-----------------\n\nYou'll find examples of routine management tasks under the Samples tab, in\nthe [Common management tasks](/android/work/play/emm-api/samples) guide.\n\nYou'll also find sample code in these documents:\n\n- [Create custom store layouts](/android/work/play/emm-api/store-layout)\n- [Managed configurations through Play](/android/work/play/emm-api/managed-configurations)\n- [Send batch requests](/android/work/play/emm-api/v1/how-tos/batch)\n\nPreliminary setup for EMM developers\n------------------------------------\n\nYou need a Google Account. You also need to use the Google API Console or\nGoogle Cloud console. Assuming you've been approved and granted access to\nthe Google Play EMM APIs, here's a quick summary of how to get started:\n\n1. Sign in to your [Google API Console](https://console.cloud.google.com/).\n2. Create a project. This project will contain the service accounts and credentials to be used by your EMM console.\n3. Enable the Google Play EMM API library for your project.\n4. Create a primary service account for the project.\n\n\u003cbr /\u003e\n\nSee [Register for the EMM community](/android/work/play/emm-api/register) for\ncomplete details.\n\nLearn about Google's EMM developer resources\n--------------------------------------------\n\nIn addition to\n[Google Play EMM API reference documentation](/android/work/play/emm-api/v1)\nand guides, here are some Google resources for EMM developers:\n\n- The [EMM developer's overview](/android/work/overview) provides big-picture information about Android EMM developers.\n- [Register for the EMM community](/android/work/play/emm-api/register) contains step-by-step details for developers, starting with the registration process (partnering with Google as an EMM to support Android for your customers) through to distributing apps in customer environments.\n- [Android enterprise terminology](/android/work/terminology) defines terms used in this documentation."]]