ali_iot_plugin
阿里飞燕平台 (生活物联网平台) Flutter plugin.
基于阿里生活物联网平台的Android和iOS架包实现的Flutter插件,方便开发自有APP
Get started
Add dependency
dependencies:
ali_iot_plugin: ^0.0.x #请使用pub上的最新版本
- Android
AppApplication 需要继承 IotApplication() 按照生活物联网平台 集成安全图片 可能需要集成 implementation 'com.facebook.android:facebook-android-sdk:8.0.0'
- iOS
按照生活物联网平台 集成安全图片 需要在AppDelegate的application方法中调用ALiAppDelegate.application(application,didFinishLaunchingWithOptions:launchOptions)
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
ALiAppDelegate.application(application,didFinishLaunchingWithOptions:launchOptions)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
What can do
- 登录
- 第三方登录
- 退出登录
- 请求API通道接口
- 配网设备
- 查看设备属性
- 设置设备属性
Super simple to use
import 'package:ali_iot_plugin/index.dart';
CommonAPI.logout();
CommonAPI.authCodeLogin(authCode);
static Future<dynamic> requestApi(
String path,
String apiVersion, {
String scheme,
String host,
String authType,
String mockType,
Map<String, Object> params,
Map<String, Object> addParam,
bool handleTimeOut = true,
}) async {
return await CommonAPI.requestApi(path, apiVersion,
scheme: scheme, host: host, authType: authType, mockType: mockType, params: params, addParam: addParam)
.then((value) => value, onError: (error) {
print(error);
if (handleTimeOut && error is PlatformException) {
if (error.code.contains("timeout") || error.message.contains("timeout") || error.message.contains("Unable to resolve host")) {
//请求超时
}
}
throw e;
});
}
This project is a starting point for a Flutter plug-in package, 阿里飞燕 生活物联网平台 includes platform-specific implementation code for Android and/or iOS.
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
Todo List
目前iOS平台只实现了部分功能,后续待完善