Shad-PHP is a PHP Library for interaction with Shad (Student Educational Network)
composer require bahramali/shad-php
object_guid($user_guid,$group_guid,$channel_guid and other) is a unique code for user, group, channel and other
set_time_limit(0);
require_once __DIR__ . '/vendor/autoload.php';
use ShadPHP\ShadPHP;
$account = new ShadPHP(989123456789); // Only without zero and with area code 98
$account->onUpdate(function (array $update) use ($account) {
if (isset($update['data_enc'])) {
$message = $update['data_enc'];
// other code
}
});
$account->getUserGUID();
$account->getChats(); // get all of chats
$account->getChatAds(); // get all of chats ads
$account->getChatsUpdates(); // get chat updates
$account->getMySessions(); // get all of account session
$account->getUserInfo($user_guid);
$account->getGroupInfo($group_guid);
$account->getChannelInfo($channel_guid);
$account->getAbsObjects($objects_guids);
$account->getMessagesInterval($object_guid, $middle_message_id); // get message content by message id
$account->getMessagesUpdates($object_guid);
$account->getMessages($object_guid, $sort, $filter_type, $max_id);
$account->getMessagesByID($object_guid, $message_ids);
$account->getPollStatus($poll_id);
$account->seenChats($seen_list);
$account->searchChatMessages($search_text, $type, $object_guid);
$account->searchGlobalObjects($search_text);
$account->searchGlobalMessages($search_text, $type);
$account->sendMessage($object_guid, $text);
$account->votePoll($poll_id, $selection_index);
$account->uploadFile($object_guid, $file_path, $text, $progress_cb);
$account->downloadFile($file_inline, $save_file, $overwrite, $progress_cb);
This library can be used for easy interaction with Shad just like official applications.
This library is free and can not be sold.
The responsibility for using this library lies with the individual
Shad-PHP is licensed under the MIT License - see the LICENSE file for details