全部產品
Search
文件中心

IoT Platform:HTTP用戶端接入樣本

更新時間:Jun 30, 2024

本文提供裝置通過HTTP協議接入物聯網平台的範例程式碼。

物聯網平台支援裝置通過HTTP協議接入。相關配置說明,請參見HTTPS串連通訊

本文提供基於Java HTTP的接入範例程式碼,介紹如何配置裝置通過HTTP協議接入物聯網平台的請求參數,計算裝置端簽名等。

說明 目前僅華東2(上海)地區支援HTTP接入。

pom.xml配置

pom.xml檔案中,添加以下依賴,引入阿里fastjson包。

<dependency>
  <groupId>com.alibaba</groupId>
  <artifactId>fastjson</artifactId>
  <version>1.2.83</version>
</dependency>

範例程式碼

以下為裝置通過HTTP協議接入物聯網平台和訊息通訊的主體程式碼範例。

import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.util.Set;
import java.util.SortedMap;
import java.util.TreeMap;

import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
import javax.net.ssl.HttpsURLConnection;

import com.alibaba.fastjson.JSONObject;

/**
 * 裝置使用HTTP協議接入阿里雲物聯網平台。 
 * 協議規範說明,請參見《HTTP協議規範》。
 * 資料格式,請參見《HTTP串連通訊》。
 */
public class IotHttpClient {

    // 地區ID,以華東2(上海)為例。
    private static String regionId = "cn-shanghai";

    // 定義加密方式,MAC演算法可選以下演算法:HmacMD5、HmacSHA1,需和signmethod一致。
    private static final String HMAC_ALGORITHM = "hmacsha1";

    // token有效期間7天,失效後需要重新擷取。
    private String token = null;

    /**
     * 初始化HTTP用戶端。
     * 
     * @param productKey,產品key。
     * @param deviceName,裝置名稱。
     * @param deviceSecret,裝置密鑰。
     */
    public void conenct(String productKey, String deviceName, String deviceSecret) {
        try {
            // 登入位址。
            URL url = new URL("https://iot-as-http." + regionId + ".aliyuncs.com/auth");

            HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Content-type", "application/json");
            conn.setDoOutput(true);
            conn.setDoInput(true);

            // 擷取URLConnection對象對應的輸出資料流。
            PrintWriter out = new PrintWriter(conn.getOutputStream());
            // 發送請求參數。
            out.print(authBody(productKey, deviceName, deviceSecret));
            // flush輸出資料流的緩衝。
            out.flush();

            // 擷取URLConnection對象對應的輸入資料流。
            BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            // 讀取URL的響應。
            String result = "";
            String line = "";
            while ((line = in.readLine()) != null) {
                result += line;
            }
            System.out.println("----- auth result -----");
            System.out.println(result);

            // 關閉輸入輸出資料流。
            in.close();
            out.close();
            conn.disconnect();

            // 擷取token。
            JSONObject json = JSONObject.parseObject(result);
            if (json.getIntValue("code") == 0) {
                token = json.getJSONObject("info").getString("token");
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * 發送訊息。
     * 
     * @param topic,發送訊息的Topic。
     * @param payload,訊息內容。
     */
    public void publish(String topic, byte[] payload) {
        try {
            // 登入位址。
            URL url = new URL("https://iot-as-http." + regionId + ".aliyuncs.com/topic" + topic);

            HttpsURLConnection conn = (HttpsURLConnection) url.openConnection();
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Content-type", "application/octet-stream");
            conn.setRequestProperty("password", token);
            conn.setDoOutput(true);
            conn.setDoInput(true);

            // 擷取URLConnection對象對應的輸出資料流。
            BufferedOutputStream out = new BufferedOutputStream(conn.getOutputStream());
            out.write(payload);
            out.flush();

            // 擷取URLConnection對象對應的輸入資料流。
            BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            // 讀取URL的響應。
            String result = "";
            String line = "";
            while ((line = in.readLine()) != null) {
                result += line;
            }
            System.out.println("----- publish result -----");
            System.out.println(result);

            // 關閉輸入輸出資料流。
            in.close();
            out.close();
            conn.disconnect();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * 產生認證請求內容。
     * 
     * @param params,認證參數。
     * @return 認證請求訊息體。
     */
    private String authBody(String productKey, String deviceName, String deviceSecret) {

        // 構建認證請求。
        JSONObject body = new JSONObject();
        body.put("productKey", productKey);
        body.put("deviceName", deviceName);
        body.put("clientId", productKey + "." + deviceName);
        body.put("timestamp", String.valueOf(System.currentTimeMillis()));
        body.put("signmethod", HMAC_ALGORITHM);
        body.put("version", "default");
        body.put("sign", sign(body, deviceSecret));

        System.out.println("----- auth body -----");
        System.out.println(body.toJSONString());

        return body.toJSONString();
    }

    /**
     * 裝置端簽名。
     * 
     * @param params,簽名參數。
     * @param deviceSecret,裝置密鑰。
     * @return 簽名十六進位字串。
     */
    private String sign(JSONObject params, String deviceSecret) {

        // 請求參數按字典順序排序。
        Set<String> keys = getSortedKeys(params);

        // sign、signmethod和version除外。
        keys.remove("sign");
        keys.remove("signmethod");
        keys.remove("version");

        // 組裝簽名明文。
        StringBuffer content = new StringBuffer();
        for (String key : keys) {
            content.append(key);
            content.append(params.getString(key));
        }

        // 計算簽名。
        String sign = encrypt(content.toString(), deviceSecret);
        System.out.println("sign content=" + content);
        System.out.println("sign result=" + sign);

        return sign;
    }

    /**
     * 擷取JSON對象排序後的key集合。
     * 
     * @param json,需要排序的JSON對象。
     * @return 排序後的key集合。
     */
    private Set<String> getSortedKeys(JSONObject json) {
        SortedMap<String, String> map = new TreeMap<String, String>();
        for (String key : json.keySet()) {
            String value = json.getString(key);
            map.put(key, value);
        }
        return map.keySet();
    }

    /**
     * 使用HMAC_ALGORITHM加密。
     * 
     * @param content,明文。
     * @param secret,密鑰。
     * @return 密文。
     */
    private String encrypt(String content, String secret) {
        try {
            byte[] text = content.getBytes(StandardCharsets.UTF_8);
            byte[] key = secret.getBytes(StandardCharsets.UTF_8);
            SecretKeySpec secretKey = new SecretKeySpec(key, HMAC_ALGORITHM);
            Mac mac = Mac.getInstance(secretKey.getAlgorithm());
            mac.init(secretKey);
            return byte2hex(mac.doFinal(text));
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

    /**
     * 二進位轉十六進位字串。
     * 
     * @param b,位元組。
     * @return 十六進位字串。
     */
    private String byte2hex(byte[] b) {
        StringBuffer sb = new StringBuffer();
        for (int n = 0; b != null && n < b.length; n++) {
            String stmp = Integer.toHexString(b[n] & 0XFF);
            if (stmp.length() == 1) {
                sb.append('0');
            }
            sb.append(stmp);
        }
        return sb.toString().toUpperCase();
    }

    public static void main(String[] args) {
        String productKey = "您的productKey";
        String deviceName = "您的deviceName";
        String deviceSecret = "您的deviceSecret";
        IotHttpClient client = new IotHttpClient();
        client.conenct(productKey, deviceName, deviceSecret);
        // 發送訊息的Topic。可在控制台自訂,裝置有發布許可權。
        String updateTopic = "/" + productKey + "/" + deviceName + "/user/update";
        client.publish(updateTopic, "hello http".getBytes(StandardCharsets.UTF_8));
        client.publish(updateTopic, new byte[] { 0x01, 0x02, 0x03 });
    }
}