haystack_client 1.0.0 copy "haystack_client: ^1.0.0" to clipboard
haystack_client: ^1.0.0 copied to clipboard

Client for SkySpark servers using haystack protocol. SkySpark is a project to serve your IoT data and make analytics. Haystack defines a tagging model and REST API for IoT.

example/main.dart

import 'package:haystack_client/haystack_client.dart';

final String uri = "http://localhost/api/demo";
final String user = "su";
final String pass = "su";

void main() async {
  var client = new HSkySparkClient(uri, user, pass);
  await client.open();

  var result = client.about();
  print(result);
}
0
likes
110
pub points
0%
popularity

Publisher

unverified uploader

Client for SkySpark servers using haystack protocol. SkySpark is a project to serve your IoT data and make analytics. Haystack defines a tagging model and REST API for IoT.

Homepage

Documentation

API reference

License

AFL-3.0 (LICENSE)

Dependencies

collection, crypto, haystack, http

More

Packages that depend on haystack_client