• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/odnoklassniki.php
  • Класс: CSocServOdnoklassniki
  • Вызов: CSocServOdnoklassniki::SendUserFeed
static function SendUserFeed($userId, $message)
{
	$appID = trim(self::GetOption("odnoklassniki_appid"));
	$appSecret = trim(self::GetOption("odnoklassniki_appsecret"));
	$appKey = trim(self::GetOption("odnoklassniki_appkey"));
	$gAuth = new COdnoklassnikiInterface($appID, $appSecret, $appKey);
	$result = $gAuth->SendFeed($userId, $message);
	return $result;
}