xml_rpc 0.2.2 copy "xml_rpc: ^0.2.2" to clipboard
xml_rpc: ^0.2.2 copied to clipboard

outdated

A library to communicate through the XML-RPC protocol.

example/main.dart

// Copyright (c) 2015, Alexandre Ardhuin. All rights reserved. Use of this
// source code is governed by a BSD-style license that can be found in the
// LICENSE file.
import 'package:xml_rpc/client.dart' as xml_rpc;

void main() {
  const url = 'https://api.flickr.com/services/xmlrpc';
  xml_rpc
      .call(url, 'flickr.panda.getList', [
        {'api_key': 'yourApiKey'}
      ])
      .then(print)
      .catchError(print);
}
10
likes
0
pub points
78%
popularity

Publisher

unverified uploader

A library to communicate through the XML-RPC protocol.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http, meta, xml

More

Packages that depend on xml_rpc