2017-12-10 11:33:03 +01:00
|
|
|
---
|
|
|
|
title: messages.uploadEncryptedFile
|
|
|
|
description: messages.uploadEncryptedFile parameters, return type and example
|
|
|
|
---
|
|
|
|
## Method: messages.uploadEncryptedFile
|
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|---------------|----------|
|
|
|
|
|peer|[InputEncryptedChat](../types/InputEncryptedChat.md) | Yes|
|
2018-02-18 14:18:18 +01:00
|
|
|
|file|[InputEncryptedFile](../types/InputEncryptedFile.md) | Optional|
|
2017-12-10 11:33:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
### Return type: [EncryptedFile](../types/EncryptedFile.md)
|
|
|
|
|
|
|
|
### Can bots use this method: **YES**
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
$MadelineProto = new \danog\MadelineProto\API();
|
2017-12-11 12:12:38 +01:00
|
|
|
$MadelineProto->session = 'mySession.madeline';
|
2017-12-10 11:33:03 +01:00
|
|
|
if (isset($token)) { // Login as a bot
|
|
|
|
$MadelineProto->bot_login($token);
|
|
|
|
}
|
|
|
|
if (isset($number)) { // Login as a user
|
2017-12-11 12:12:38 +01:00
|
|
|
$MadelineProto->phone_login($number);
|
|
|
|
$code = readline('Enter the code you received: '); // Or do this in two separate steps in an HTTP API
|
2017-12-10 11:33:03 +01:00
|
|
|
$MadelineProto->complete_phone_login($code);
|
|
|
|
}
|
|
|
|
|
|
|
|
$EncryptedFile = $MadelineProto->messages->uploadEncryptedFile(['peer' => InputEncryptedChat, 'file' => InputEncryptedFile, ]);
|
|
|
|
```
|
|
|
|
|
|
|
|
Or, if you're using the [PWRTelegram HTTP API](https://pwrtelegram.xyz):
|
|
|
|
|
|
|
|
### As a bot:
|
|
|
|
|
|
|
|
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
* method - messages.uploadEncryptedFile
|
|
|
|
* params - `{"peer": InputEncryptedChat, "file": InputEncryptedFile, }`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### As a user:
|
|
|
|
|
|
|
|
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.uploadEncryptedFile`
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
peer - Json encoded InputEncryptedChat
|
|
|
|
|
|
|
|
file - Json encoded InputEncryptedFile
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```
|
|
|
|
EncryptedFile = messages.uploadEncryptedFile({peer=InputEncryptedChat, file=InputEncryptedFile, })
|
|
|
|
```
|
|
|
|
|