Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 391 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 391 Bytes

meteor-xmlrpc

XMLRPC functionality for Meteor

For full, original documentation click here

#Install

meteor add ecwyne:xmlrpc

#Use

var client = new Meteor.XmlRpcClient('https://{url_here}');
var options = ['api_key', 'other_options'];
var cb = function callback(){}
client.methodCall('Method_Name', options, cb);