account.SetGlobalPrivacySettings
Set global privacy settings
Example
const { Api, TelegramClient } = require("telegram");
const { StringSession } = require("telegram/sessions");
const session = new StringSession(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});
(async function run() {
await client.connect(); // This assumes you have already authenticated with .start()
const result = await client.invoke(
new Api.account.SetGlobalPrivacySettings({
settings: new Api.GlobalPrivacySettings({
archiveAndMuteNewNoncontactPeers: false,
}),
})
);
console.log(result); // prints the result
})();
import { Api, TelegramClient } from "telegram";
import { StringSession } from "telegram/sessions";
const session = new StringSession(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});
(async function run() {
await client.connect(); // This assumes you have already authenticated with .start()
const result: Api.GlobalPrivacySettings = await client.invoke(
new Api.account.SetGlobalPrivacySettings({
settings: new Api.GlobalPrivacySettings({
archiveAndMuteNewNoncontactPeers: false,
}),
})
);
console.log(result); // prints the result
})();
Parameters
Name | Type | Description |
---|---|---|
settings | GlobalPrivacySettings | Global privacy settings |
Result
Possible errors
Code | Type | Description |
---|---|---|
400 | AUTOARCHIVE_NOT_AVAILABLE | The autoarchive setting is not available at this time: please check the value of the autoarchive_setting_available field in client config ยป before calling this method. |
Can bots use this method?
No
Related pages
Client configuration
The MTProto API has multiple configuration parameters that can be fetched with the appropriate methods.