web-dev-qa-db-ja.com

React-NativeでAWSIoT(デバイス)を実装する方法は?

React-Nativeを使用してAWS-IoT(デバイス)を実装しようとしています。

私はパッケージを使用しました、

1) aws-iot-device-sdk-js

2) react-native-aws-iot-device-shadows

パッケージの使用中に多くのエラーが発生しました。デバッグはほとんどできませんでしたが、期待した結果が得られませんでした。

チャットアプリケーションにAWS-IoTを実装しています。

REST APIを使用してIoTセッションを正常に作成し、これらを応答として取得していますiotEndpoint, region, accessKey, secretKey, sessionToken。しかし、これらの資格情報を使用すると、上記のパッケージを使用して接続することができません。

10
megha

私はこれを理解しました、

ステップ1:インストールaws-iot npmパッケージnpm install --save aws-sdk aws-iot-device-sdk

ステップ2:インストールnodeifyパッケージnpm install --save-dev rn-nodeify

ステップ3:このコマンドを実行して、指定された一連のパッケージをインストールします

npx rn-nodeify --install "fs,util,path,tls,stream,buffer,global,process" --hack

「すべてのパッケージがインストールされるまでお待ちください」

ステップ4:パッケージ.jsonに移動-> scriptsセクションに追加、

"postinstall": "rn-nodeify --install fs,util,path,tls,stream,buffer,global,process --hack"

ステップ5:インストールasyncstorage-downパッケージnpm install --save asyncstorage-down

ステップ6:rn-nodeifyは、react-nativeプロジェクトのルート部分にファイルshim.jsを自動生成します。このindex.jsのようにimport './shim'ファイルにインポートするだけです。

最後に、aws-iotパッケージを使用する準備が整いました!!!

バックエンドでREST APIを使用して、上記の質問で指定されているようにiot-sessionキーを生成することをお勧めします。

8
Ron Astle Lobo

この投稿とチャットログを読みましたが、私も持っているように見えるこの問題の解決策を見つけることができませんでした。ここでRonが説明したすべての手順を実行しましたが、filesys.existsSyncは関数エラーではありません。 index.jsの最初のコード行としてshimimportを含めました。 AWSと通信するためのコードは次のとおりです。

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 *
 * @format
 * @flow
 * @lint-ignore-every XPLATJSCOPYRIGHT1
 */

import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';
import AwsIot from 'aws-iot-device-sdk'

const instructions = Platform.select({
  ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
  Android:
    'Double tap R on your keyboard to reload,\n' +
    'Shake or press menu button for dev menu',
});

type Props = {};
export default class App extends Component<Props> {
  constructor(props){
    super(props)
    this.connectToIoT()
  }

  connectToIoT(){
    var device = AwsIot.device({
       keyPath: './cert/mykey-private.pem.key',
       certPath: '/cert/mycert-certificate.pem.crt',
       caPath:   './cert/AmazonRootCA1.pem.key',
       clientId: 'myclientid',
       Host: 'myhost'
   });
   console.log(device)
   device
    .on('connect', function() {
      console.log('connect');
    });
    device
    .on('message', function(topic, payload) {
      console.log('message', topic, payload.toString());
    });
    }

  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>Welcome to React Native!</Text>
        <Text style={styles.instructions}>To get started, edit App.js</Text>
        <Text style={styles.instructions}>{instructions}</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
});

認証に証明書を使用するときに、反応ネイティブでMQTTを使用してAWS IoTと通信するための可能な解決策、または他の方法はありますか?

2
alehel