• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/twitter.php
  • Класс: CSocServTwitter
  • Вызов: CSocServTwitter::SendUserFeed
static function SendUserFeed($userId, $message, $messageId)
{

	$appID = trim(self::GetOption("twitter_key"));
	$appSecret = trim(self::GetOption("twitter_secret"));
	$tw = new CTwitterInterface($appID, $appSecret);
	return $tw->SendTwit($userId, $message, $messageId);
}