logOut

Use this method to log out from the cloud Bot API server before launching the bot locally. You must log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you can immediately log in on a local server, but will not be able to log in back to the cloud Bot API server for 10 minutes. Returns True on success. Requires no parameters. This method support both normal and static use

Arguments
Name Type Description Required
token string | null | array You can use this method on another bot with specify this parameter no
forgot bool | null You can set to not receive request result, dont set it or pass null for turn it off no
answer bool | null You can set to answer to webhook, dont set it or pass null for turn it off no

Output : bool | BPT\types\responseError

Static or normal : Static

Examples :

BPT::logOut(token: String | null, forgot: Boolean | null, answer: Boolean | null);
BPT::logOut(['token' => String | null, 'forgot' => Boolean | null, 'answer' => Boolean | null]);
BPT::logOut();
$this->logOut(token: String | null, forgot: Boolean | null, answer: Boolean | null);
$this->logOut(['token' => String | null, 'forgot' => Boolean | null, 'answer' => Boolean | null]);
$this->logOut();