Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 321 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 321 Bytes

Liferay Portal JSON WS bindings

var config = {
  hostname: "localhost",
  port: 8080,
  auth: "user@example.com:secret"
};

var lportal = require('lportal').createServices( config );

var req = lportal.blogsEntry.getEntry({entryId: 1234});

req.on('data', function(entry) {
  console.log( entry.title );
});