MadelineProto/old_docs/API_docs_v66/methods/messages_getDocumentByHash.md

81 lines
1.7 KiB
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
2017-06-30 15:36:33 +02:00
title: messages.getDocumentByHash
2018-03-23 16:23:49 +01:00
description: Get document by SHA256 hash
2016-12-20 13:15:22 +01:00
---
2017-06-30 15:36:33 +02:00
## Method: messages.getDocumentByHash
2016-12-20 13:15:22 +01:00
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Get document by SHA256 hash
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2018-03-27 14:41:50 +02:00
|sha256|[bytes](../types/bytes.md) | Yes|`hash('sha256', $filename, true);`|
|size|[int](../types/int.md) | Yes|The file size|
|mime\_type|[string](../types/string.md) | Yes|The mime type of the file|
2017-06-30 15:36:33 +02:00
### Return type: [Document](../types/Document.md)
2017-08-28 12:44:50 +02:00
### Can bots use this method: **YES**
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2017-07-23 16:33:46 +02:00
$Document = $MadelineProto->messages->getDocumentByHash(['sha256' => 'bytes', 'size' => int, 'mime_type' => 'string', ]);
2017-02-13 04:33:06 +01:00
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-07-23 16:11:02 +02:00
### As a bot:
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - messages.getDocumentByHash
2017-07-23 16:40:54 +02:00
* params - `{"sha256": "bytes", "size": int, "mime_type": "string", }`
2017-07-23 16:11:02 +02:00
2017-07-23 16:34:36 +02:00
2017-07-23 16:11:02 +02:00
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/messages.getDocumentByHash`
Parameters:
sha256 - Json encoded bytes
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
size - Json encoded int
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
mime_type - Json encoded string
2017-07-23 16:40:54 +02:00
2017-07-23 16:11:02 +02:00
2017-08-20 19:09:52 +02:00
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
Document = messages.getDocumentByHash({sha256='bytes', size=int, mime_type='string', })
```
2018-03-27 14:41:50 +02:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|SHA256_HASH_INVALID|The provided SHA256 hash is invalid|