리전 ID
REGION_ID
는 앱을 만들 때 선택한 리전을 기준으로 Google에서 할당하는 축약된 코드입니다. 일부 리전 ID는 일반적으로 사용되는 국가 및 주/도 코드와 비슷하게 표시될 수 있지만 코드는 국가 또는 주/도와 일치하지 않습니다. 2020년 2월 이후에 생성된 앱의 경우 REGION_ID.r
이 App Engine URL에 포함됩니다. 이 날짜 이전에 만든 기존 앱의 경우 URL에서 리전 ID는 선택사항입니다.
리전 ID에 대해 자세히 알아보세요.
Pub/Sub는 애플리케이션 사이에서 안정적인 다대다 비동기 메시징 기능을 제공합니다. 게시자 애플리케이션은 메시지를 주제로 보낼 수 있으며 다른 애플리케이션은 주제를 구독하여 메시지를 수신할 수 있습니다.
이 문서에서는 Cloud 클라이언트 라이브러리를 사용하여 App Engine 앱에서 Pub/Sub 메시지를 전송 및 수신하는 방법을 설명합니다. .기본 요건
- 안내에 따라 선택한 런타임에 대해 앱을 빌드하여 환경 및 프로젝트를 설정하고 App Engine 앱의 구성 방법을 파악합니다.
- 이 문서에 설명된 샘플 애플리케이션을 실행할 때 필요하므로 프로젝트 ID를 기록해 둡니다.
- 애플리케이션에 사용할 서비스 계정 및 서비스 계정 키를 만듭니다.
-
Enable the Google Cloud Pub/Sub API.
샘플 앱 복제
샘플 앱을 로컬 머신에 복사한 후 pubsub
디렉터리로 이동합니다.
Go
git clone https://github.com/GoogleCloudPlatform/golang-samples.git
cd golang-samples/appengine_flexible/pubsub
자바
버전 11/17
git clone https://github.com/GoogleCloudPlatform/java-docs-samples
cd java-docs-samples/flexible/java-11/pubsub/
버전 8
git clone https://github.com/GoogleCloudPlatform/java-docs-samples
cd java-docs-samples/flexible/java-8/pubsub/
Node.js
git clone https://github.com/GoogleCloudPlatform/nodejs-docs-samples
cd nodejs-docs-samples/appengine/pubsub
PHP
git clone https://github.com/GoogleCloudPlatform/php-docs-samples.git
cd php-docs-samples/pubsub
Python
git clone https://github.com/GoogleCloudPlatform/python-docs-samples
cd python-docs-samples/appengine/flexible/pubsub
Ruby
git clone https://github.com/GoogleCloudPlatform/ruby-docs-samples
cd ruby-docs-samples/appengine/flexible/pubsub/
.NET
git clone https://github.com/GoogleCloudPlatform/dotnet-docs-samples
cd dotnet-docs-samples/appengine/flexible/Pubsub/Pubsub.Sample
주제 및 구독 만들기
주제 및 구독을 만듭니다. 이때 Pub/Sub 서버가 요청을 전송할 엔드포인트를 지정해야 합니다.
Go
# Configure the topic gcloud pubsub topics create YOUR_TOPIC_NAME # Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10
YOUR_TOKEN
을 무작위의 비밀 토큰으로 바꿉니다. 내보내기 엔드포인트에서 이 토큰을 사용해 요청을 확인합니다.
인증을 통해 Pub/Sub를 사용하려면 다른 구독을 만듭니다.
# Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-auth-service-account=YOUR-SERVICE-ACCOUNT-EMAIL\ --push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE\ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10 # Your service agent # `service-{PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com` needs to have the # `iam.serviceAccountTokenCreator` role. PUBSUB_SERVICE_ACCOUNT="service-${PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com" gcloud projects add-iam-policy-binding ${PROJECT_ID} \ --member="serviceAccount:${PUBSUB_SERVICE_ACCOUNT}"\ --role='roles/iam.serviceAccountTokenCreator'
YOUR-SERVICE-ACCOUNT-EMAIL
을 서비스 계정 이메일로 바꿉니다.
자바
# Configure the topic gcloud pubsub topics create YOUR_TOPIC_NAME # Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10
YOUR_TOKEN
을 무작위의 비밀 토큰으로 바꿉니다. 내보내기 엔드포인트에서 이 토큰을 사용해 요청을 확인합니다.
인증을 통해 Pub/Sub를 사용하려면 다른 구독을 만듭니다.
# Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-auth-service-account=YOUR-SERVICE-ACCOUNT-EMAIL\ --push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE\ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10 # Your service agent # `service-{PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com` needs to have the # `iam.serviceAccountTokenCreator` role. PUBSUB_SERVICE_ACCOUNT="service-${PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com" gcloud projects add-iam-policy-binding ${PROJECT_ID} \ --member="serviceAccount:${PUBSUB_SERVICE_ACCOUNT}"\ --role='roles/iam.serviceAccountTokenCreator'
YOUR-SERVICE-ACCOUNT-EMAIL
을 서비스 계정 이메일로 바꿉니다.
Node.js
# Configure the topic gcloud pubsub topics create YOUR_TOPIC_NAME # Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10
YOUR_TOKEN
을 무작위의 비밀 토큰으로 바꿉니다. 내보내기 엔드포인트에서 이 토큰을 사용해 요청을 확인합니다.
인증을 통해 Pub/Sub를 사용하려면 다른 구독을 만듭니다.
# Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-auth-service-account=YOUR-SERVICE-ACCOUNT-EMAIL\ --push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE\ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10 # Your service agent # `service-{PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com` needs to have the # `iam.serviceAccountTokenCreator` role. PUBSUB_SERVICE_ACCOUNT="service-${PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com" gcloud projects add-iam-policy-binding ${PROJECT_ID} \ --member="serviceAccount:${PUBSUB_SERVICE_ACCOUNT}"\ --role='roles/iam.serviceAccountTokenCreator'
YOUR-SERVICE-ACCOUNT-EMAIL
을 서비스 계정 이메일로 바꿉니다.
PHP
# Configure the topic gcloud pubsub topics create YOUR_TOPIC_NAME # Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10
YOUR_TOKEN
을 무작위의 비밀 토큰으로 바꿉니다. 내보내기 엔드포인트에서 이 토큰을 사용해 요청을 확인합니다.
인증을 통해 Pub/Sub를 사용하려면 다른 구독을 만듭니다.
# Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-auth-service-account=YOUR-SERVICE-ACCOUNT-EMAIL\ --push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE\ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10 # Your service agent # `service-{PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com` needs to have the # `iam.serviceAccountTokenCreator` role. PUBSUB_SERVICE_ACCOUNT="service-${PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com" gcloud projects add-iam-policy-binding ${PROJECT_ID} \ --member="serviceAccount:${PUBSUB_SERVICE_ACCOUNT}"\ --role='roles/iam.serviceAccountTokenCreator'
YOUR-SERVICE-ACCOUNT-EMAIL
을 서비스 계정 이메일로 바꿉니다.
Python
# Configure the topic gcloud pubsub topics create YOUR_TOPIC_NAME # Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10
YOUR_TOKEN
을 무작위의 비밀 토큰으로 바꿉니다. 내보내기 엔드포인트에서 이 토큰을 사용해 요청을 확인합니다.
인증을 통해 Pub/Sub를 사용하려면 다른 구독을 만듭니다.
# Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-auth-service-account=YOUR-SERVICE-ACCOUNT-EMAIL\ --push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE\ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10 # Your service agent # `service-{PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com` needs to have the # `iam.serviceAccountTokenCreator` role. PUBSUB_SERVICE_ACCOUNT="service-${PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com" gcloud projects add-iam-policy-binding ${PROJECT_ID} \ --member="serviceAccount:${PUBSUB_SERVICE_ACCOUNT}"\ --role='roles/iam.serviceAccountTokenCreator'
YOUR-SERVICE-ACCOUNT-EMAIL
을 서비스 계정 이메일로 바꿉니다.
Ruby
# Configure the topic gcloud pubsub topics create YOUR_TOPIC_NAME # Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10
YOUR_TOKEN
을 무작위의 비밀 토큰으로 바꿉니다. 내보내기 엔드포인트에서 이 토큰을 사용해 요청을 확인합니다.
인증을 통해 Pub/Sub를 사용하려면 다른 구독을 만듭니다.
# Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-auth-service-account=YOUR-SERVICE-ACCOUNT-EMAIL\ --push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE\ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10 # Your service agent # `service-{PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com` needs to have the # `iam.serviceAccountTokenCreator` role. PUBSUB_SERVICE_ACCOUNT="service-${PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com" gcloud projects add-iam-policy-binding ${PROJECT_ID} \ --member="serviceAccount:${PUBSUB_SERVICE_ACCOUNT}"\ --role='roles/iam.serviceAccountTokenCreator'
YOUR-SERVICE-ACCOUNT-EMAIL
을 서비스 계정 이메일로 바꿉니다.
.NET
# Configure the topic gcloud pubsub topics create YOUR_TOPIC_NAME # Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10
YOUR_TOKEN
을 무작위의 비밀 토큰으로 바꿉니다. 내보내기 엔드포인트에서 이 토큰을 사용해 요청을 확인합니다.
인증을 통해 Pub/Sub를 사용하려면 다른 구독을 만듭니다.
# Configure the push subscription gcloud pubsub subscriptions create YOUR_SUBSCRIPTION_NAME \ --topic=YOUR_TOPIC_NAME \ --push-auth-service-account=YOUR-SERVICE-ACCOUNT-EMAIL\ --push-auth-token-audience=OPTIONAL_AUDIENCE_OVERRIDE\ --push-endpoint=https://YOUR_PROJECT_ID.REGION_ID.r.appspot.com/push-handlers/receive_messages?token=YOUR_TOKEN \ --ack-deadline=10 # Your service agent # `service-{PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com` needs to have the # `iam.serviceAccountTokenCreator` role. PUBSUB_SERVICE_ACCOUNT="service-${PROJECT_NUMBER}@gcp-sa-pubsub.iam.gserviceaccount.com" gcloud projects add-iam-policy-binding ${PROJECT_ID} \ --member="serviceAccount:${PUBSUB_SERVICE_ACCOUNT}"\ --role='roles/iam.serviceAccountTokenCreator'
YOUR-SERVICE-ACCOUNT-EMAIL
을 서비스 계정 이메일로 바꿉니다.
환경 변수 설정
Go
app.yaml
파일을 수정하여 주제 및 확인 토큰의 환경 변수를 설정합니다.
자바
app.yaml
파일을 수정하여 주제 및 확인 토큰의 환경 변수를 설정합니다.
Node.js
app.yaml
파일을 수정하여 주제 및 확인 토큰의 환경 변수를 설정합니다.
PHP
index.php
파일을 수정하여 주제와 구독의 환경 변수를 설정합니다.
Python
app.yaml
파일을 수정하여 프로젝트 ID, 주제, 확인 토큰의 환경 변수를 설정합니다.
Ruby
app.yaml
파일을 수정하여 프로젝트 ID, 주제, 확인 토큰의 환경 변수를 설정합니다.
.NET
app.yaml
파일을 수정하여 주제 및 확인 토큰의 환경 변수를 설정합니다.
코드 검토
샘플 앱은 Pub/Sub 클라이언트 라이브러리를 사용합니다.
Go
샘플 앱은 구성에서 app.yaml
파일(PUBSUB_TOPIC
및 PUBSUB_VERIFICATION_TOKEN
)에 설정한 환경 변수를 사용합니다.
이 인스턴스에서 수신한 메시지는 슬라이스에 저장됩니다.
messages []string
pushHandler
함수는 푸시된 메시지를 수신하고 토큰을 확인하고 메시지를 messages
슬라이스에 추가합니다.
publishHandler
함수는 새 메시지를 주제에 게시합니다.
자바
샘플 앱은 app.yaml
파일에 설정된 값을 사용하여 환경 변수를 구성합니다. 푸시 요청 핸들러는 이러한 값을 사용하여 요청이 Pub/Sub에서 수신되었으며 신뢰할 수 있는 소스가 보낸 것인지 확인합니다.
String pubsubVerificationToken = System.getenv("PUBSUB_VERIFICATION_TOKEN");
샘플 앱은 메시지를 저장할 Cloud Datastore 데이터베이스 인스턴스를 유지합니다.
PubSubPush
서블릿은 내보내기된 메시지를 수신하여 messageRepository
데이터베이스 인스턴스에 추가합니다.
버전 11/17
버전 8
PubSubPublish
서블릿은 App Engine 웹 앱과 상호작용하여 새 메시지를 게시하고 수신된 메시지를 표시합니다.
Node.js
샘플 앱은 app.yaml
파일에 설정된 값을 사용하여 환경 변수를 구성합니다. 푸시 요청 핸들러는 이러한 값을 사용하여 요청이 Pub/Sub에서 수신되었으며 신뢰할 수 있는 소스가 보낸 것인지 확인합니다.
// The following environment variables are set by the `app.yaml` file when
// running on App Engine, but will need to be manually set when running locally.
var PUBSUB_VERIFICATION_TOKEN = process.env.PUBSUB_VERIFICATION_TOKEN;
var pubsub = gcloud.pubsub({
projectId: process.env.GOOGLE_CLOUD_PROJECT
});
var topic = pubsub.topic(process.env.PUBSUB_TOPIC);
샘플 앱은 전역 목록을 유지 관리하여 이 인스턴스에서 수신된 메시지를 저장합니다.
// List of all messages received by this instance
var messages = [];
이 메서드는 푸시된 메시지를 받아 messages
전역 목록에 추가합니다.
이 메서드는 App Engine 웹 앱과 상호작용하여 새 메시지를 게시하고 수신된 메시지를 표시합니다.
PHP
샘플 앱은 app.yaml
파일에 설정된 값을 사용하여 환경 변수를 구성합니다. 푸시 요청 핸들러는 이러한 값을 사용하여 요청이 Pub/Sub에서 수신되었으며 신뢰할 수 있는 소스가 보낸 것인지 확인합니다.
샘플 앱은 전역 목록을 유지 관리하여 이 인스턴스에서 수신된 메시지를 저장합니다.
$messages = [];
pull
메서드는 생성된 주제에서 메시지를 검색하여 메시지 목록에 추가합니다.
publish
메서드는 새 메시지를 주제에 게시합니다.
Python
샘플 앱은 app.yaml
파일에 설정된 값을 사용하여 환경 변수를 구성합니다. 푸시 요청 핸들러는 이러한 값을 사용하여 요청이 Pub/Sub에서 수신되었으며 신뢰할 수 있는 소스가 보낸 것인지 확인합니다.
app.config['PUBSUB_VERIFICATION_TOKEN'] = \
os.environ['PUBSUB_VERIFICATION_TOKEN']
app.config['PUBSUB_TOPIC'] = os.environ['PUBSUB_TOPIC']
샘플 앱은 전역 목록을 유지 관리하여 이 인스턴스에서 수신된 메시지를 저장합니다.
MESSAGES = []
pubsub_push()
메서드는 푸시된 메시지를 수신하여 MESSAGES
전역 목록에 추가합니다.
index()
메서드는 App Engine 웹 앱과 상호작용하여 새 메시지를 게시하고 수신된 메시지를 표시합니다.
Ruby
샘플 앱은 app.yaml
파일에 설정된 값을 사용하여 환경 변수를 구성합니다. 푸시 요청 핸들러는 이러한 값을 사용하여 요청이 Pub/Sub에서 수신되었으며 신뢰할 수 있는 소스가 보낸 것인지 확인합니다.
샘플 앱은 전역 목록을 유지 관리하여 이 인스턴스에서 수신된 메시지를 저장합니다.
이 메서드는 푸시된 메시지를 받아 messages
전역 목록에 추가합니다.
이 메서드는 App Engine 웹 앱과 상호작용하여 새 메시지를 게시하고 수신된 메시지를 표시합니다.
.NET
로컬에서 샘플 실행
로컬에서 실행 시 Google Cloud CLI를 사용하여 Google Cloud API 사용을 위한 인증을 제공할 수 있습니다. 기본 요건의 설명대로 환경을 설정했다면 이 인증을 제공하는 gcloud init
명령어를 이미 실행한 것입니다.
Go
애플리케이션을 시작하기 전에 환경 변수를 설정합니다.
export GOOGLE_CLOUD_PROJECT=[your-project-id]
export PUBSUB_VERIFICATION_TOKEN=[your-token]
export PUBSUB_TOPIC=[your-topic]
go run pubsub.go
자바
mvn clean package
애플리케이션을 시작하기 전에 환경 변수를 설정합니다.
export PUBSUB_VERIFICATION_TOKEN=[your-verification-token]
export PUBSUB_TOPIC=[your-topic]
mvn jetty:run
Node.js
애플리케이션을 시작하기 전에 환경 변수를 설정합니다.
export GOOGLE_CLOUD_PROJECT=[your-project-id]
export PUBSUB_VERIFICATION_TOKEN=[your-verification-token]
export PUBSUB_TOPIC=[your-topic]
npm install
npm start
PHP
Composer를 사용하여 종속 항목을 설치합니다.
composer install
그런 다음 애플리케이션을 시작하기 전에 환경 변수를 설정합니다.
export GOOGLE_CLOUD_PROJECT=[your-project-id]
export PUBSUB_VERIFICATION_TOKEN=[your-verification-token]
export PUBSUB_TOPIC=[your-topic]
php -S localhost:8080
Python
종속 항목을 가상 환경에 설치하는 것이 좋습니다.
Mac OS/Linux
- 격리된 Python 환경을 만듭니다.
python3 -m venv env
source env/bin/activate
- 현재 위치가 샘플 코드가 있는 디렉터리가 아니면
hello_world
샘플 코드가 포함된 디렉터리로 이동합니다. 그런 후 종속 항목을 설치합니다.cd YOUR_SAMPLE_CODE_DIR
pip install -r requirements.txt
Windows
PowerShell을 사용하여 Python 패키지를 실행합니다.
- PowerShell 설치 위치를 찾습니다.
- PowerShell 바로가기를 마우스 오른쪽 버튼으로 클릭하고 관리자 권한으로 시작합니다.
- 격리된 Python 환경을 만듭니다.
python -m venv env
.\env\Scripts\activate
- 프로젝트 디렉터리로 이동하여 종속 항목을 설치합니다. 현재 위치가 샘플 코드가 있는 디렉터리가 아니면
hello_world
샘플 코드가 포함된 디렉터리로 이동합니다. 그런 후 종속 항목을 설치합니다.cd YOUR_SAMPLE_CODE_DIR
pip install -r requirements.txt
그런 다음 애플리케이션을 시작하기 전에 환경 변수를 설정합니다.
export GOOGLE_CLOUD_PROJECT=[your-project-id]
export PUBSUB_VERIFICATION_TOKEN=[your-verification-token]
export PUBSUB_TOPIC=[your-topic]
python main.py
Ruby
종속 항목을 설치합니다.
bundle install
그런 다음 애플리케이션을 시작하기 전에 환경 변수를 설정합니다.
export GOOGLE_CLOUD_PROJECT=[your-project-id]
export PUBSUB_VERIFICATION_TOKEN=[your-verification-token]
export PUBSUB_TOPIC=[your-topic]
bundle exec ruby app.rb -p 8080
.NET
애플리케이션 루트 디렉터리에서 다음 명령어를 실행합니다.
dotnet restore
dotnet run
웹브라우저에서 http://localhost:5000/을 입력합니다. 웹 서버를 종료하려면 터미널 창에서 Ctrl+C를 누릅니다.
푸시 알림 시뮬레이션
애플리케이션은 로컬에서 메시지를 보낼 수 있지만 로컬에서 푸시 메시지를 받지는 못합니다. 하지만 로컬 푸시 알림 엔드포인트에 HTTP 요청을 전송하면 푸시 메시지를 시뮬레이션할 수 있습니다. 샘플에는 sample_message.json
파일이 포함되어 있습니다.
Go
curl
또는 httpie
클라이언트를 사용하여 HTTP POST
요청을 보낼 수 있습니다.
curl -H "Content-Type: application/json" -i --data @sample_message.json "localhost:8080/push-handlers/receive_messages?token=[your-token]"
또는
http POST ":8080/push-handlers/receive_messages?token=[your-token]" < sample_message.json
응답:
HTTP/1.1 200 OK
Date: Tue, 13 Nov 2018 16:04:18 GMT
Content-Length: 0
요청이 완료되면 localhost:8080
을 새로고침하고 수신 메시지 목록에서 메시지를 확인할 수 있습니다.
자바
curl
또는 httpie
클라이언트를 사용하여 HTTP POST
요청을 보낼 수 있습니다.
curl -H "Content-Type: application/json" -i --data @sample_message.json "localhost:8080/push-handlers/receive_messages?token=[your-token]"
또는
http POST ":8080/push-handlers/receive_messages?token=[your-token]" < sample_message.json
응답:
HTTP/1.1 200 OK
Date: Wed, 26 Apr 2017 00:03:28 GMT
Content-Length: 0
Server: Jetty(9.3.8.v20160314)
요청이 완료되면 localhost:8080
을 새로고침하고 수신 메시지 목록에서 메시지를 확인할 수 있습니다.
Node.js
curl
또는 httpie
클라이언트를 사용하여 HTTP POST
요청을 보낼 수 있습니다.
curl -H "Content-Type: application/json" -i --data @sample_message.json "localhost:8080/push-handlers/receive_messages?token=[your-token]"
또는
http POST ":8080/push-handlers/receive_messages?token=[your-token]" < sample_message.json
응답:
HTTP/1.1 200 OK
Connection: keep-alive
Date: Mon, 31 Aug 2015 22:19:50 GMT
Transfer-Encoding: chunked
X-Powered-By: Express
요청이 완료되면 localhost:8080
을 새로고침하고 수신 메시지 목록에서 메시지를 확인할 수 있습니다.
PHP
curl
또는 httpie
클라이언트를 사용하여 HTTP POST
요청을 보낼 수 있습니다.
curl -i --data @sample_message.json "localhost:4567/push-handlers/receive_messages?token=[your-token]"
또는
http POST ":4567/push-handlers/receive_messages?token=[your-token]" < sample_message.json
요청이 완료되면 localhost:8080
을 새로고침하고 수신 메시지 목록에서 메시지를 확인할 수 있습니다.
Python
curl
또는 httpie
클라이언트를 사용하여 HTTP POST
요청을 보낼 수 있습니다.
curl -H "Content-Type: application/json" -i --data @sample_message.json "localhost:8080/pubsub/push?token=[your-token]"
또는
http POST ":8080/pubsub/push?token=[your-token]" < sample_message.json
응답:
HTTP/1.0 200 OK
Content-Length: 2
Content-Type: text/html; charset=utf-8
Date: Mon, 10 Aug 2015 17:52:03 GMT
Server: Werkzeug/0.10.4 Python/2.7.10
OK
요청이 완료되면 localhost:8080
을 새로고침하고 수신 메시지 목록에서 메시지를 확인할 수 있습니다.
Ruby
curl
또는 httpie
클라이언트를 사용하여 HTTP POST
요청을 보낼 수 있습니다.
curl -i --data @sample_message.json "localhost:4567/push-handlers/receive_messages?token=[your-token]"
또는
http POST ":4567/push-handlers/receive_messages?token=[your-token]" < sample_message.json
응답:
HTTP/1.1 200 OK
Content-Type: text/html;charset=utf-8
Content-Length: 13
X-Xss-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Server: WEBrick/1.3.1 (Ruby/2.3.0/2015-12-25)
Date: Wed, 20 Apr 2016 20:56:23 GMT
Connection: Keep-Alive
Hello, World!
요청이 완료되면 localhost:8080
을 새로고침하고 수신 메시지 목록에서 메시지를 확인할 수 있습니다.
.NET
HTTP POST
요청을 보내려면 다음 안내를 따르세요.
Get-Content -Raw .\sample_message.json | Invoke-WebRequest -Uri
http://localhost:5000/Push?token=your-secret-token -Method POST -ContentType
'text/json' -OutFile out.txt
요청이 완료되면 localhost:5000
을 새로 고친 후 수신 메시지 목록에서 메시지를 확인할 수 있습니다.
App Engine에서 실행
gcloud
명령줄 도구를 사용하여 App Engine에 데모 앱을 배포하려면 다음 안내를 따르세요.
Go
app.yaml
파일이 있는 디렉터리에서 다음 명령어를 실행합니다.
gcloud app deploy
자바
Maven을 사용하여 앱을 배포하려면 다음을 실행합니다.
mvn package appengine:deploy -Dapp.deploy.projectId=PROJECT_ID
PROJECT_ID를 Google Cloud 프로젝트의 ID로 바꿉니다. pom.xml
파일에 이미 프로젝트 ID가 지정된 경우 실행할 명령어에 -Dapp.deploy.projectId
속성을 포함하지 않아도 됩니다.
Node.js
app.yaml
파일이 있는 디렉터리에서 다음 명령어를 실행합니다.
gcloud app deploy
PHP
app.yaml
파일이 있는 디렉터리에서 다음 명령어를 실행합니다.
gcloud app deploy
Python
app.yaml
파일이 있는 디렉터리에서 다음 명령어를 실행합니다.
gcloud app deploy
Ruby
app.yaml
파일이 있는 디렉터리에서 다음 명령어를 실행합니다.
gcloud app deploy app.yaml
.NET
app.yaml
파일이 있는 디렉터리에서 다음 명령어를 실행합니다.
gcloud app deploy
이제 https://PROJECT_ID.REGION_ID.r.appspot.com
에서 애플리케이션에 액세스할 수 있습니다.
양식을 사용하여 메시지를 제출할 수 있지만 애플리케이션에서 어떤 인스턴스가 알림을 수신하는지 보장하지는 못합니다. 여러 메시지를 전송하고 페이지를 새로 고쳐 수신된 메시지를 확인할 수 있습니다.