Gmail API 클라이언트 라이브러리
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Gmail API는 HTTP 및 JSON을 기반으로 작성되었기 때문에 모든 표준 HTTP 클라이언트가 Gmail API에 요청을 보내고 응답을 파싱할 수 있습니다.
그러나 Google API 클라이언트 라이브러리는 더 나은 언어 통합과 향상된 보안을 제공하고 사용자 승인이 필요한 호출을 지원합니다.
이 클라이언트 라이브러리는 다양한 프로그래밍 언어로 제공되므로 HTTP 요청을 직접 설정하고 응답을 파싱하지 않아도 됩니다.
자바
이 페이지에는 자바용 Google API 클라이언트 라이브러리를 사용하여 Gmail API를 시작하는 데 필요한 정보가 포함되어 있습니다. 자세한 내용은 다음 설명서를 참고하세요.
프로젝트에 클라이언트 라이브러리 추가하기
다음 탭에서 빌드 환경(Maven 또는 Gradle)을 선택합니다.
자바스크립트
클라이언트 라이브러리의 개발자 가이드를 읽어 보세요.
.NET
이 페이지에는 .NET용 Google API 클라이언트 라이브러리를 사용하여 Gmail API를 시작하는 데 필요한 정보가 포함되어 있습니다. 자세한 내용은 다음 문서를 참고하세요.
Python
이 페이지에는 Python용 Google API 클라이언트 라이브러리 (v1/v2)를 사용하여 Gmail API를 시작하는 방법에 관한 정보가 포함되어 있습니다. 자세한 내용은 다음 설명서를 참고하세요.
클라이언트 라이브러리 설치
패키지 관리자를 사용하거나 Python 클라이언트 라이브러리를 직접 다운로드하여 설치할 수 있습니다.
관리형 설치
pip 또는 setuptools를 사용하여 설치를 관리합니다(먼저 sudo
를 실행해야 할 수 있음).
- pip(선호됨):
pip install --upgrade google-api-python-client
- Setuptools:
easy_install --upgrade google-api-python-client
직접 설치
- Python용 최신 클라이언트 라이브러리를 다운로드합니다.
- 코드를 압축해제합니다.
- 설치합니다.
python setup.py install
App Engine
Python 클라이언트 라이브러리는 App Engine Python 런타임 환경에 설치되어 있지 않으므로 타사 라이브러리와 마찬가지로 애플리케이션에 복사해야 합니다.
Ruby
이 페이지에는 Ruby용 Google API 클라이언트 라이브러리를 사용하여 Gmail API를 시작하는 방법에 관한 정보가 포함되어 있습니다. 자세한 내용은 다음 설명서를 참고하세요.
google-api-client
gem 설치
시스템에 따라 명령어 앞에 sudo
를 추가해야 할 수 있습니다.
Ruby용 Google API 클라이언트 라이브러리를 설치하지 않았으면 RubyGems
를 사용하여 설치합니다.
gem install google-api-client
이미 gem을 설치했다면 최신 버전으로 업데이트합니다.
gem update -y google-api-client
Ruby용 Google API 클라이언트 라이브러리 시작하기
첫 번째 요청을 만드는 방법은 시작 가이드를 참조하세요.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-03-24(UTC)
[null,null,["최종 업데이트: 2025-03-24(UTC)"],[],[],null,["# Gmail API Client Libraries\n\nThe Gmail API is built on HTTP and JSON, so any standard HTTP client can\nsend requests to it and parse the responses.\n\nHowever, the Google APIs client libraries provide better language integration,\nimproved security, and support for making calls that require user authorization.\nThe client libraries are available in a number of programming languages; by\nusing them you can avoid the need to manually set up HTTP requests and parse the\nresponses. \n\n### Go\n\nGet the latest [Gmail API client library for Go ()](https://github.com/google/google-api-go-client). Read the\nclient library's [developer's guide](https://github.com/google/google-api-go-client).\n\n### Java\n\n\u003cbr /\u003e\n\n\nThis page contains information about getting started with the Gmail API by using\nthe Google API Client Library for Java. For more information, see the following documentation:\n\n- Browse the [Javadoc reference for the Gmail API](https://googleapis.dev/java/google-api-services-gmail/latest/).\n- Read the [Developer's Guide for the Google API Client Library for Java](https://github.com/googleapis/google-api-java-client/).\n\nAdd the client library to your project\n--------------------------------------\n\nSelect your build environment (Maven or Gradle) from the following tabs:\n\n\nMaven\n\nAdd the following to your `pom.xml` file:\n\n```\nRefreshing Maven content...\n```\n\nSee [all versions available on the Maven Central Repository](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.google.apis%22%20AND%20a%3A%22google-api-services-gmail%22).\nGradle\n\nAdd the following to your `build.gradle` file:\n\n```\nRefreshing Gradle content...\n```\n\nSee [all versions available on the Maven Central Repository](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.google.apis%22%20AND%20a%3A%22google-api-services-gmail%22).\n\n### JavaScript\n\nRead the client library's [developer's guide](/api-client-library/javascript/start/start-js).\n\n### .NET\n\n\nThis page contains information about getting started with the Gmail API by using\nthe Google API Client Library for .NET. For more information, see the following documentation:\n\n- Browse the [.NET reference documentation for the Gmail API](https://googleapis.dev/dotnet/Google.Apis/latest/api/Google.Apis.html).\n- Read the [Developer's guide for the Google API Client Library for .NET](/api-client-library/dotnet/get_started).\n\nDownloading the library\n-----------------------\n\nInstall the NuGet package:\n[Google.Apis](https://www.nuget.org/packages/Google.Apis).\n\n### Node.js\n\nGet the latest [Gmail API client library for Node.js](https://github.com/google/google-api-nodejs-client/). Read the\nclient library's [developer's guide](https://github.com/google/google-api-nodejs-client/).\n\n### Obj-C\n\nGet the latest [Gmail API client library for Objective-C](https://github.com/google/google-api-objectivec-client-for-rest). Read the\nclient library's [developer's guide](https://github.com/google/google-api-objectivec-client-for-rest/wiki).\n\n### PHP\n\nGet the latest [Gmail API client library for PHP](https://github.com/google/google-api-php-client). Read the\nclient library's [developer's guide](/api-client-library/php).\n\n### Python\n\n\nThis page contains information about getting started with the Gmail API by using\nthe Google API Client Library for Python (v1/v2). For more information, see the following documentation:\n\n- Browse the [PyDoc reference for the Gmail API](https://googleapis.github.io/google-api-python-client/docs/dyn/gmail_v1.html).\n- Read the [Developer's guide for the Google API Client Library for Python (v1/v2)](/api-client-library/python).\n\nSystem requirements\n-------------------\n\n- Operating systems:\n - Linux\n - macOS X\n - Windows\n- [The v1 client library requires Python 2.7 or higher. The v2 client library requires 3.7 or higher.](http://python.org/download/)\n\nInstall the client library\n--------------------------\n\nYou can either use a package manager or manually download and install the Python client library:\n\n### Managed install\n\nUse pip or setuptools to manage your installation. You might\nneed to run `sudo` first.\n\n- [pip](http://pypi.python.org/pypi/pip) (preferred): \n\n ```\n pip install --upgrade google-api-python-client\n ```\n- [Setuptools](http://pypi.python.org/pypi/setuptools): \n\n ```\n easy_install --upgrade google-api-python-client\n ```\n\n### Manual install\n\n1. [Download the latest client\n library for Python](https://pypi.python.org/pypi/google-api-python-client/).\n2. Unpack the code.\n3. Install: \n\n ```\n python setup.py install\n ```\n\n### App Engine\n\nBecause the Python client libraries aren't installed in the\n[App Engine Python runtime environment](https://cloud.google.com/appengine/docs/python/),\nyou must [copy them into your application](https://cloud.google.com/appengine/docs/python/tools/libraries27#vendoring) just like third-party libraries.\n\n\u003cbr /\u003e\n\n### Ruby\n\n\nThis page contains information about getting started with the Gmail API by using\nthe Google API Client Library for Ruby. For more information, see the following documentation:\n\n- Read the [Get started guide for the Google API Client Library for Ruby](/api-client-library/ruby/start/get_started).\n\nInstall the `google-api-client` gem\n-----------------------------------\n\n\nDepending on your system, you might need to prepend these commands with `sudo`.\n\n\nIf you haven't installed the Google API Client Library for Ruby before, install by using `RubyGems`: \n\n```\ngem install google-api-client\n```\n\n\u003cbr /\u003e\n\n\nIf you already have the gem installed, update to the latest version: \n\n```\ngem update -y google-api-client\n```\n\n\u003cbr /\u003e\n\nGet started with the Google API Client Library for Ruby\n-------------------------------------------------------\n\n\nTo learn how to make your first request, see the\n[Get started guide](/api-client-library/ruby/start/get_started).\n\n\u003cbr /\u003e"]]