Returns public keys of current user, his subusers and his contacts.

Parameters 

 

Name TypeDescription

cb

optional

function

callback function


Example

this.getAllKeys = function(cb) {
  return _request({
    method: 'GET',
    url: '/key',
    callback: cb
  });
};