Halaman ini belum tersedia dalam bahasa lokal Anda. Kami berusaha keras untuk menambahkan lebih banyak versi bahasa. Terima kasih atas dukungan Anda.

Compute
Elastic Cloud Server
Huawei Cloud Flexus
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Networking
Virtual Private Cloud
Elastic IP
Elastic Load Balance
NAT Gateway
Direct Connect
Virtual Private Network
VPC Endpoint
Cloud Connect
Enterprise Router
Enterprise Switch
Global Accelerator
Management & Governance
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
OneAccess
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
IAM Identity Center
Cloud Operations Center
Resource Governance Center
Migration
Server Migration Service
Object Storage Migration Service
Cloud Data Migration
Migration Center
Cloud Ecosystem
KooGallery
Partner Center
User Support
My Account
Billing Center
Cost Center
Resource Center
Enterprise Management
Service Tickets
HUAWEI CLOUD (International) FAQs
ICP Filing
Support Plans
My Credentials
Customer Operation Capabilities
Partner Support Plans
Professional Services
Analytics
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
Data Lake Factory
DataArts Lake Formation
IoT
IoT Device Access
Others
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Security & Compliance
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Anti-DDoS Service
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Edge Security
Blockchain
Blockchain Service
Web3 Node Engine Service
Media Services
Media Processing Center
Video On Demand
Live
SparkRTC
MetaStudio
Storage
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service Turbo
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Containers
Cloud Container Engine
SoftWare Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Databases
Relational Database Service
Document Database Service
Data Admin Service
Data Replication Service
GeminiDB
GaussDB
Distributed Database Middleware
Database and Application Migration UGO
TaurusDB
Middleware
Distributed Cache Service
API Gateway
Distributed Message Service for Kafka
Distributed Message Service for RabbitMQ
Distributed Message Service for RocketMQ
Cloud Service Engine
Multi-Site High Availability Service
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Business Applications
Workspace
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Video Intelligent Analysis Service
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Content Delivery & Edge Computing
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Intelligent EdgeCloud
Solutions
SAP Cloud
High Performance Computing
Developer Services
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
CodeArts Repo
Cloud Application Engine
MacroVerse aPaaS
KooMessage
KooPhone
KooDrive
Help Center/ ROMA Connect/ User Guide (ME-Abu Dhabi Region)/ Getting Started/ Using ROMA Connect for Service Integration

Using ROMA Connect for Service Integration

Updated on 2024-07-10 GMT+08:00

Overview

ROMA Connect can encapsulate APIs, data sources, and custom functions into standard RESTful APIs and expose them to external systems. ROMA Connect provides complete lifecycle management and multi-layer security protection for APIs.

This chapter provides a configuration example to help you get familiar with the service integration process.

The steps for integrating services with ROMA Connect are as follows:

Prerequisites

Before performing this operation, complete the following preparations:

  • An EIP has been bound to the ROMA Connect instance, and the network where the local PC is located can communicate with the EIP network.
  • The Postman tool has been downloaded and installed on your local PC.

Step 1: Prepare a Backend Service

You need to prepare an API that can be called as a backend service. In this example, you can customize a function API that does not require any authentication or contain any request parameters as the backend service.

  1. Create an integration application.
    1. Log in to the ROMA Connect console. On the Instances page, click View Console next to a specific instance.
    2. In the navigation pane on the left, choose Integration Applications. In the upper right corner of the page, click Create Integration Application.
    3. In the dialog box displayed, set Name and Description, and click OK.
  2. Create a function API.
    1. In the navigation pane on the left, choose API Connect > Custom Backend. On the Backends tab page, click Create.
    2. On the Create Backend page, set backend parameters and click Create.
      Figure 1 Creating a backend
      Table 1 Backend configuration

      Parameter

      Description

      Name

      Enter a backend name. It is recommended that you enter a name based on naming rules to facilitate search.

      Integration Application

      Select the integration application created in 1.

      Backend Request Method

      Select GET as the request method of the backend.

      Backend Request Path

      Enter the request path of the backend in the /serviceName/interfaceName format.

      Backend Security Authentication

      Select None, which indicates that authentication is not required when the API is called.

      Description

      Enter a brief description of the backend.

      Advanced Settings

      You do not need to configure advanced settings.

      After the backend is created, the online IDE page is automatically displayed.

    3. Use a reference script provided by ROMA Connect to implement a simple function backend.

      In the upper left corner of the online IDE page, choose File > New Function Backend > Hello World Example. In the dialog box displayed, click Yes. The built-in script Hello world! is displayed in the editing box.

    4. Change Hello world! to ROMA TEST! so that the response ROMA TEST! will be returned when the backend is called. Then, click Save in the upper right corner of the page.
      function execute(data){
          return "ROMA TEST!"
      }
    5. Click Test in the upper right corner of the page, and then click Test in the test bar.

      In the Execution Result area, check whether the response is ROMA TEST! defined in 2.d.

    6. After the backend test is complete, click Deploy in the upper right corner of the page. In the dialog box displayed, click Yes to deploy the function backend.
    7. After the backend deployment is complete, click Publish in the upper right corner of the page.
    8. In the pane displayed, set required parameters and click Publish to create a frontend function API for the backend and publish the API in the environment.
      Table 2 Parameters for publishing a backend

      Parameter

      Description

      Group

      Select the API group to which the frontend API belongs.

      If there is a default API group, select the default API group. If there is no default API group, click Create API Group. In the Create API Group dialog box, click OK to create an API group.

      Environment

      Select the default environment RELEASE.

      Frontend Security Authentication

      Select the security authentication mode used by the frontend API. In this example, select None.

      Frontend Request Protocol

      Enter the request protocol used to access the backend API. In this example, retain the default option HTTPS.

      Timeout (ms)

      Timeout interval for the frontend API to call a backend service. Retain the default value 60000.

      Advanced Settings

      You do not need to configure advanced settings.

    9. After the function API is published, the API details page is displayed. In the Request Definition area on the API Calling tab page, obtain and record the values of Subdomain Name, Protocol, Method, and Path of the function API.

Step 2: Create an API Group

Each open API belongs to an API group. Before creating an API, create an API group.

  1. Log in to the ROMA Connect console. On the Instances page, click View Console next to a specific instance.
  2. In the navigation pane on the left, choose API Connect > API Management. On the API Groups tab page, click Create.
  3. In the Create API Group dialog box, enter the group-related parameters and click OK.
    Figure 2 Creating an API group
    Table 3 Parameters for creating an API group

    Parameter

    Description

    Name

    Enter an API group name. It is recommended that you enter a name based on naming rules to facilitate search.

    Type

    Select Integration Application as the API group type.

    Integration Application

    Select the integration application created in Step 1: Prepare a Backend Service. If no integration application is available, click Create Integration Application on the right to create an integration application.

    Description

    Enter a brief description of the API group.

Step 3: Create an API

Create an API on ROMA Connect and associate it with the backend service.

  1. On the APIs tab page, click Create API.
  2. On the Create API page, set the parameters of the API.
    1. Configure basic information and click Next.
      Table 4 Basic API information

      Parameter

      Description

      Name

      Enter an API name. It is recommended that you enter a name based on naming rules to facilitate search.

      Integration Application

      Select the integration application created in Step 1: Prepare a Backend Service. If no integration application is available, click Create Integration Application on the right to create an integration application.

      API Group

      Select the API group created in Step 2: Create an API Group.

      Security Authentication

      Security authentication mode used for the API. In this example, select None.

      Two-factor Authentication

      You do not need to enable this option.

      Tag Name

      You do not need to set this parameter.

      Description

      You do not need to enter a description.

    2. Define API request information, which will be exposed to external users. Then, click Next.
      Figure 3 Defining API request information
      Table 5 API request configuration

      Parameter

      Description

      Protocol

      Select HTTPS as the request protocol used to access the API.

      Path

      Enter the request path of the API in the /serviceName/interfaceName format.

      Matching

      Select Exact match as the matching mode of the request path.

      Method

      Select GET as the request method of the API.

      CORS

      Specifies whether CORS is supported. You do not need to enable this option.

      Input Parameters

      Request parameters of the API. You do not need to add request parameters.

    3. Configure backend service information of the API, that is, the access information of the API functioning as the backend service.

      If you have prepared a function API by referring to Step 1: Prepare a Backend Service, configure the access information of that API.

      Then, click Next.
      Figure 4 Configuring the access to the backend service
      Table 6 Backend service access parameters

      Parameter

      Description

      Backend Type

      Select HTTP/HTTPS as a backend service.

      Protocol

      Select the request protocol of the function API recorded in Step 1: Prepare a Backend Service.

      Method

      Select the request method of the function API recorded in Step 1: Prepare a Backend Service.

      Load Balance Channel

      Select Do not configure.

      Backend Address

      Enter the access address of the backend service in the Host:Port format. Host indicates the IP address or domain name for accessing the backend service. If no port is specified, port 80 is used for HTTP by default, and port 443 is used for HTTPS by default.

      Enter the subdomain name of the function API recorded in Step 1: Prepare a Backend Service.

      Path

      Enter the request path of the backend service in the /serviceName/interfaceName format. Enter the request path of the function API recorded in Step 1: Prepare a Backend Service.

      Timeout (ms)

      Retain the default value 5000 as the timeout interval for ROMA Connect to call the backend service.

      Two-way Authentication

      Determine whether to enable two-way authentication between ROMA Connect and backend services. You do not need to enable this option.

      Backend Authentication

      Determine whether the backend service authenticates the calling requests sent by ROMA Connect. You do not need to enable this option.

      Backend Parameters

      In this example, the backend service does not contain request parameters. You do not need to set this parameter.

      Constant Parameters

      In this example, the backend service does not contain request parameters. You do not need to set constant parameters.

      System Parameters

      In this example, the backend service does not contain request parameters. You do not need to set system parameters.

    4. Configure the response example returned by the API, which will be displayed in the API calling information. After the configuration is complete, click Finish.
      Figure 5 Configuring the API response examples
      Table 7 Parameters for configuring API response examples

      Parameter

      Description

      Example Success Response

      Set the success response example based on the response of the backend service. In this example, set this parameter to ROMA TEST!.

      Example Failure Response

      Example of a failure response returned by the system when an API fails to be called. You do not need to set this parameter.

  3. After the API is created, click Back to API List. The created API is displayed in the API list.

Step 4: Debug the API

After you create an API, debug it to ensure that the API functions properly.

  1. On the APIs tab page, choose More > Debug in the Operation column of the API.
  2. Click Send Request on the API debugging page to test the API calling.
  3. On the right of the page, view the request and response sent by the API.
    If the service is successfully called, a success response body is returned. In this example, ROMA TEST! is returned.
    Figure 6 Debugging an API

Step 5: Publish the API

After the API function test is successful, publish the API to the environment. An API can be called by external users only after it is published to the environment.

  1. On the APIs tab page, click Publish in the Operation column of the API.
  2. On the Publish API page, set Environment to RELEASE and click Publish.
    Figure 7 Publishing the API
  3. Click Back to API List. In the API list, the running environment of the API changes to RELEASE.

Step 6: Call the API

In this example, Postman will be used to call APIs.

  1. Obtain request information of the API.
    1. On the APIs tab page, click the API name to access the API details page.
    2. On the API Calling tab page, select API Request in the topology. View the API calling information, including the URL, subdomain name, request method, request path, and request parameters, in the lower part of the page.
      Figure 8 API request information
  2. Call the exposed API.

    Use Postman to call the API obtained in 1.

    After the API is successfully called, check whether the response is the same as the test result in Step 4: Debug the API.

    Figure 9 API calling response

Kami menggunakan cookie untuk meningkatkan kualitas situs kami dan pengalaman Anda. Dengan melanjutkan penelusuran di situs kami berarti Anda menerima kebijakan cookie kami. Cari tahu selengkapnya

Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback