huskyclient 0.0.7 copy "huskyclient: ^0.0.7" to clipboard
huskyclient: ^0.0.7 copied to clipboard

dart husky client library for ebox. currently only dart native is supported. but vpn version is under workiing.

example/huskyclient_example.dart

// Copyright (c) 2021, ETSME.
// for details. All rights reserved. Use of this source code is governed by a
// MIT-style license that can be found in the LICENSE file.

// Bruce.Lu <lzbgt@icloud.com> 2021.01.04

import 'package:huskyclient/huskyclient.dart';
import 'package:huskyclient/proto/dart/box/conversation.pb.dart';

void main() async {
  var client = Native(
      hostAddr: '68.0.0.7:7777',
      token:
          'MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEdmYqKy6699SFbaLD4fNBHlT2pBc/cYC7MdoYPlldh+XGiu0yfdJTZ5GpSf+d6HT5nuuM4EwIoM/fjhkZiHUcBA==',
      uid: Int64(292),
      debug: true);

  try {
    await client.connect();
  } catch (e) {
    print('exception in connect: $e');
  }

  var req = ListConversationRequest();

  var res = await client.send(ApiOperation.ListConversationOp, req);

  var rep = ListConversationResponse.fromBuffer(res.content);

  print('code: ${res.code}\nres: $res\nrep: $rep');

  await Future.delayed(Duration(seconds: 2)).then((value) => client.close());
  print('done');
}
1
likes
30
pub points
0%
popularity

Publisher

verified publisheretsus.net

dart husky client library for ebox. currently only dart native is supported. but vpn version is under workiing.

Homepage

License

MIT (LICENSE)

Dependencies

fixnum, meta, protobuf

More

Packages that depend on huskyclient