Я пытаюсь подключить мое приложение ionic 4 (angular 7) к Azure iot hub. Я пытаюсь отправить сообщения из моего приложения на iot hub.Скачал «azure-iothub» внутри моего ионного проекта и пытался импортировать «клиент» для формирования соединения, но при сборке получал ошибки.
Попытался установить эти конкретные модули в браузер как false, он строит с предупреждениями, но приложение не делаетзагрузить на localhost.Также пробовал http post request, но там также получала ошибку CORS, так как "localhost не разрешен доступ".
import { Platform } from '@ionic/angular';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
import {Client} from 'azure-iothub';
@Component({
selector: 'app-root',
templateUrl: 'app.component.html'
})
export class AppComponent {
constructor(
private platform: Platform,
private splashScreen: SplashScreen,
private statusBar: StatusBar
) {
this.initializeApp();
}
initializeApp() {
this.platform.ready().then(() => {
this.statusBar.styleDefault();
this.splashScreen.hide();
});
var connectionString = '**********';
var client = Client.fromConnectionString(connectionString);
client.open(function (err) {
if (err) {
console.error('Could not connect: ' + err.message);
} else {
console.log('Service client connected');
}});
}
}
Получение следующей ошибки - ошибка при сборке