Returns information about your profile.

Parameters 

 

Name TypeDescription

cb

optional

function

callback function



Example

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