public static function Nodejs::getContentTokenUsers in Node.js integration 7
1 call to Nodejs::getContentTokenUsers()
- nodejs_get_content_channel_users in ./
nodejs.module - Get a list of users in a content channel.
File
- ./
nodejs.module, line 919
Class
Code
public static function getContentTokenUsers($message) {
$options = array(
'method' => 'POST',
'data' => drupal_json_encode($message),
);
return self::httpRequest('nodejs/content/token/users', $options);
}