将消息发布到 Google Cloud Pub/Sub

本快速入门介绍如何创建一个程序,该程序使用 Pub/Sub API 向 Pub/Sub 主题发布“Hello World!”消息。

准备工作

在运行本快速入门之前,请确保您或您的管理员已满足以下前提条件:

  • 已设置用于访问 Google Cloud APIs 的身份验证。了解如何设置身份验证

  • 为服务账号授予 IAM 角色 roles/pubsub.publisher

  • 确保已在 Google Cloud 项目中启用 Pub/Sub API。

    转到 API 库

  • 创建 Pub/Sub 主题 SAMPLE_TOPIC_01,并向该主题添加拉取订阅 SAMPLE_SUB_TOPIC_01。如需了解详情,请参阅创建主题创建订阅

创建一个程序以将消息发布到 Google Cloud

  1. 在 SAP 系统中,使用事务 SE38 在自定义命名空间中创建可执行程序(例如 Z 或 Y)。

    1. 在 SAP GUI 中,输入事务代码 SE38

    2. 程序字段中,输入程序名称,例如 ZDEMO_PUBSUB

    3. 点击创建

    4. 指定程序属性:

      1. 标题字段中,输入程序标题,例如 Publish messages to a Pub/Sub topic

      2. 类型字段中,选择 Executable Program

      3. 点击保存

    5. 将程序保存为本地对象

    6. ABAP 编辑器中,添加以下代码:

      **********************************************************************
      *  Copyright 2023 Google LLC                                         *
      *                                                                    *
      *  Licensed under the Apache License, Version 2.0 (the "License");   *
      *  you may not use this file except in compliance with the License.  *
      *  You may obtain a copy of the License at                           *
      *      https://www.apache.org/licenses/LICENSE-2.0                   *
      *  Unless required by applicable law or agreed to in writing,        *
      *  software distributed under the License is distributed on an       *
      *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,      *
      *  either express or implied.                                        *
      *  See the License for the specific language governing permissions   *
      *  and limitations under the License.                                *
      **********************************************************************
      
      REPORT zr_qs_publish_messages.
      
      * Data Declaration
      DATA:
        lv_p_projects_id TYPE string,
        lv_p_topics_id   TYPE string,
        ls_input         TYPE /goog/cl_pubsub_v1=>ty_023.
      
      TRY.
      * Instantiate the client stub
          DATA(lo_pubsub) = NEW /goog/cl_pubsub_v1( iv_key_name = 'DEMO_PUBSUB' ).
      
      * Pass the relevant input parameters
          lv_p_topics_id = 'SAMPLE_TOPIC_01'.
          lv_p_projects_id = lo_pubsub->gv_project_id.
          APPEND VALUE #( data = cl_http_utility=>encode_base64( 'Hello World!' ) ) to ls_input-messages.
      
      * Call the API
          CALL METHOD lo_pubsub->publish_topics
            EXPORTING
              iv_p_projects_id = lv_p_projects_id
              iv_p_topics_id   = lv_p_topics_id
              is_input         = ls_input
            IMPORTING
              es_output        = DATA(ls_output)
              ev_ret_code      = DATA(lv_ret_code)
              ev_err_text      = DATA(lv_err_text)
              es_err_resp      = DATA(ls_err_resp).
      
      * Handle the output
          IF lo_pubsub->is_success( lv_ret_code ).
            MESSAGE 'Message was published!' TYPE 'S'.
          ELSE.
            MESSAGE 'Message was not published!' TYPE 'E'.
          ENDIF.
      
      * Close the HTTP Connection
          lo_pubsub->close( ).
      
        CATCH /goog/cx_sdk INTO DATA(lo_exception).
          MESSAGE lo_exception->get_text( ) TYPE 'E'.
      ENDTRY.
      

      DEMO_PUBSUB 替换为客户端密钥名称。

  2. SE38 中运行您的应用。

  3. 如需验证结果,请按以下步骤操作:

    1. 在 Google Cloud 控制台中,前往 Pub/Sub

    2. 选择订阅 SAMPLE_SUB_TOPIC_01,然后前往消息标签页。

    3. 使用拉取功能检查“Hello World!”消息是否已发布到主题。

后续步骤