Updated on 2024-04-29 GMT+08:00

Java

Scenarios

To use Java to call an API through app authentication, obtain the Java SDK, create a project or import an existing project, and then call the API by referring to the API calling example.

This section uses Eclipse 4.5.2 as an example.

Figure 1 API calling process

Prerequisites

  • You have obtained the domain name, ID, request URL, and request method of the API to be called, and the AppKey and AppSecret of the App for calling the API. For more information, see Preparation.
  • You have installed Eclipse 3.6.0 or a later version. If not, download Eclipse from the official Eclipse website and install it.
  • You have installed Java Development Kit (JDK) 1.8.111 or a later version. If not, download JDK from the official Oracle website and install it.

Obtaining the SDK

  1. Log in to the DataArts Studio console.
  2. Click DataArts DataService.
  3. In the navigation pane, choose DataArts DataService Exclusive > SDKs.
  4. On the SDKs page, download the SDK package.
  5. Verify integrity of the SDK package. In Windows, open the CLI and run the following command to generate the SHA-256 value of the downloaded SDK package. In the command, D:\java-sdk.zip is an example local path and name of the SDK package. Replace it with the actual value.

    certutil -hashfile D:\java-sdk.zip SHA256

    The following is an example command output:

    SHA-256 hash value of D:\java-sdk.zip
    becff4310645f3734344897ffdcabb1853d4b7d93b59a6ea187c5ae40543b36b
    CertUtil: -hashfile command executed.
    becff4310645f3734344897ffdcabb1853d4b7d93b59a6ea187c5ae40543b36b

    Compare the SHA-256 value of the downloaded SDK package with that provided in the following table. If they are the same, no tampering or packet loss occurred during the package download.

    Language

    SHA-256 Value of the SDK Package

    Java

    becff4310645f3734344897ffdcabb1853d4b7d93b59a6ea187c5ae40543b36b

    Go

    bcf8cf19a21226e247195f2e584c8414da39b8d05840fb02948e1375d9bbb7e6

    Python

    c3da3b5814f828d6217963e856563d558d938b3da28993a8a13c8a7ebff5b95d

    C#

    a880b47e63ab35bfe216592e340a8135b866aef8f756ef7738fff3287885f33a

    JavaScript

    53261387f5fcf46e61d0bef5e890bea97952717f327c356412c3128389e848d6

    PHP

    29bf711144e77a4adaea1257cd6dedd2220e57b729a8fd000c51e68ccb42ad4b

    C++

    f604c6386c62cccb7c358007778037d5b15480987dc2860eef1b7bad37cb21d7

    C

    7086012c2d0569d5938830926b19fbea0d46682a983e04e52924978e8720c2f8

    Android

    89962b186707828b06b0c9f50c010b2f4cefd6a8e7ca9bdefb616bbbf6e739c8

Obtain the ApiGateway-java-sdk.zip package. The following table shows the files decompressed from the package.

Name

Description

libs\

SDK dependencies

libs\java-sdk-core-x.x.x.jar

SDK package

src\com\apig\sdk\demo\Main.java

Sample code for signing requests

src\com\apig\sdk\demo\OkHttpDemo.java

src\com\apig\sdk\demo\LargeFileUploadDemo.java

src\com\apig\sdk\demo\WebSocketDemo.java

.classpath

Java project configuration files

.project

Importing a Project

  1. Open Eclipse and choose File > Import.

    The Import dialog box is displayed.

  2. Choose General > Existing Projects into Workspace and click Next.

    The Import Projects dialog box is displayed.

    Figure 2 Importing a project

  3. Click Browse and select the directory where the SDK is decompressed.

    Figure 3 Selecting the demo project

  4. Click Finish.

    The following figure shows the directory structure of the project.

    Figure 4 Directory structure of the imported project

    Modify the parameters in sample code Main.java as required. For details about the sample code, see API Calling Example.

Creating a Project

  1. Open Eclipse and choose File > New > Java Project.

    The New Java Project dialog box is displayed.

  2. Enter a project name, for example, java-sdk-demo, retain the default settings for other parameters, and click Finish.

    Figure 5 Creating a project

  3. Import the .jar files in the API Gateway Java SDK.

    1. Choose java-sdk-demo, right-click, and choose Build Path > Add External Archives from the shortcut menu.
      Figure 6 Importing the .jar files
    2. Select all .jar files in the \libs directory.
      Figure 7 Selecting all .jar files

  4. Create a package and Main file.

    1. Choose src, right-click, and choose New > Package from the shortcut menu.
      Figure 8 Creating a package
    2. Enter com.apig.sdk.demo for Name.
      Figure 9 Setting a package name
    3. Click Finish.

      The package is created.

    4. Choose com.apig.sdk.demo, right-click, and choose New > Class from the shortcut menu.
      Figure 10 Creating a class
    5. Enter Main for Name and select public static void main(String[] args).
      Figure 11 Configuring the class
    6. Click Finish.

      The Main file is created.

  5. View the directory structure of the project.

    Figure 12 Directory structure of the new project

    Before using Main.java, enter the required code according to API Calling Example.

API Calling Example

  • This section demonstrates how to access a published API.
  • You need to create and release an API on the DataArts DataService management console. For details about how to create and publish an API, see Creating an API and Publishing an API.
  • The backend of this API is a fake HTTP service, which returns response code 200 and message body Congratulations, sdk demo is running.
  1. Add the following references to Main.java:

    import com.cloud.apigateway.sdk.utils.Client;
    import com.cloud.apigateway.sdk.utils.Request;
    import org.apache.http.Header;
    import org.apache.http.HttpEntity;
    import org.apache.http.HttpResponse;
    import org.apache.http.client.methods.HttpRequestBase;
    import org.apache.http.impl.client.CloseableHttpClient;
    import org.apache.http.impl.client.HttpClients;
    import org.apache.http.util.EntityUtils;

  2. Construct a request by configuring the following parameters:

    • AppKey: Obtain it by referring to Preparation. Coded or plaintext AK and SK in code pose significant security risks. You are advised to encrypt and store them in configuration files or environment variables and decrypt them when needed. This example takes environment variables as an example.
    • AppSecret: Obtain it by referring to Preparation. Coded or plaintext AK and SK in code pose significant security risks. You are advised to encrypt and store them in configuration files or environment variables and decrypt them when needed. This example takes environment variables as an example.
    • Method: Specify a request method. The sample code uses POST.
    • url: Request URL of the API, excluding the QueryString and fragment parts. For the domain name, use your own independent domain name bound to the group to which the API belongs. Use the sample code in http://{apig-endpoint}/java-sdk.
    • queryString: Specify query parameters to be carried in the URL. Characters (0-9a-zA-Z./;[]\-=~#%^&_+:") are allowed. The sample code uses name=value.
    • Header: Request header. Set a request header as required. It cannot contain underscores (_). The sample code uses Content-Type:text/plain.
    • body: Specify the request body. The sample code uses demo.

    The sample code is as follows:

            Request request = new Request();
            try
            {
                // Coded or plaintext AK and SK in code pose significant security risks. You are advised to encrypt and store them in configuration files or environment variables and decrypt them when needed.
                // In this example, the AK and SK stored in the environment variables are used for identity authentication. Before running this example, configure environment variables SDK_AK and SDK_SK in the local environment.
                String ak = System.getenv("SDK_AK");
                String sk = System.getenv("SDK_SK");
    
                request.setKey(ak);
                request.setSecret(sk);
    
                request.setMethod("POST");
                request.setUrl("http://{apig-endpoint}/java-sdk");
                 //Obtain the URL when creating an API group.
                request.addQueryStringParam("name", "value");
                request.addHeader("Content-Type", "text/plain");
                //request.addHeader("x-stage", "publish_env_name"); //Specify an environment name before publishing the API in a non-RELEASE environment.
                request.setBody("demo");
            } catch (Exception e)
            {
                e.printStackTrace();
                return;
            }

  3. Sign the request, add header x-Authorization, access the API, and print the result.

    The sample code is as follows:
            CloseableHttpClient client = null;
            try
            {
                HttpRequestBase signedRequest = Client.sign(request);
                Header[] authorization = signedRequest.getHeaders("Authorization");
                signedRequest.addHeader("x-Authorization",authorization[0].getValue());
    
                client = HttpClients.custom().build();
                HttpResponse response = client.execute(signedRequest);
                System.out.println(response.getStatusLine().toString());
                Header[] resHeaders = response.getAllHeaders();
                for (Header h : resHeaders)
                {
                    System.out.println(h.getName() + ":" + h.getValue());
                }
                HttpEntity resEntity = response.getEntity();
                if (resEntity != null)
                {
                    System.out.println(System.getProperty("line.separator") + EntityUtils.toString(resEntity, "UTF-8"));
                }
    
            } catch (Exception e)
            {
                e.printStackTrace();
            } finally
            {
                try
                {
                    if (client != null)
                    {
                        client.close();
                    }
                } catch (IOException e)
                {
                    e.printStackTrace();
                }
            }

  4. Choose Main.java, right-click, and choose Run As > Java Application to run the project test code.

    Figure 13 Running the project test code

  5. On the Console tab page, view the running result.

    Figure 14 Response displayed if the calling is successful