MadelineProtoDocs/old_docs/API_docs_v100/methods/help.editUserInfo.md

91 lines
2.9 KiB
Markdown
Raw Permalink Normal View History

2019-06-23 13:07:51 +02:00
---
title: help.editUserInfo
2019-12-27 17:48:04 +01:00
description: Internal use
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2019-12-27 18:46:25 +01:00
redirect_from: /API_docs/methods/help_editUserInfo.html
2019-06-23 13:07:51 +02:00
---
# Method: help.editUserInfo
[Back to methods index](index.md)
2019-12-27 17:48:04 +01:00
Internal use
2019-06-23 13:07:51 +02:00
### Parameters:
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
2019-12-27 17:48:04 +01:00
|user\_id|[Username, chat ID, Update, Message or InputUser](../types/InputUser.md) | User | Optional|
2019-06-23 13:07:51 +02:00
|message|[string](../types/string.md) | Message | Yes|
|entities|Array of [MessageEntity](../types/MessageEntity.md) | Entities | Yes|
|parse\_mode| [string](../types/string.md) | Whether to parse HTML or Markdown markup in the message| Optional |
2019-12-27 18:25:37 +01:00
### Return type: [help.UserInfo](../types/help.UserInfo.md)
2019-06-23 13:07:51 +02:00
2019-08-15 20:25:16 +02:00
### Can bots use this method: **NO**
2019-06-23 13:07:51 +02:00
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
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();
2019-12-27 18:25:37 +01:00
$help.UserInfo = $MadelineProto->help->editUserInfo(['user_id' => InputUser, 'message' => 'string', 'entities' => [MessageEntity, MessageEntity], 'parse_mode' => 'string', ]);
2019-06-23 13:07:51 +02:00
```
Or, if you're into Lua:
```lua
2019-12-27 18:25:37 +01:00
help.UserInfo = help.editUserInfo({user_id=InputUser, message='string', entities={MessageEntity}, parseMode='string', })
2019-06-23 13:07:51 +02:00
```
## Return value
2019-12-27 18:25:37 +01:00
If the length of the provided message is bigger than 4096, the message will be split in chunks and the method will be called multiple times, with the same parameters (except for the message), and an array of [help.UserInfo](../types/help.UserInfo.md) will be returned instead.
2019-06-23 13:07:51 +02:00
2019-12-27 17:48:04 +01:00
## Usage of parseMode:
2019-06-23 13:07:51 +02:00
2019-12-27 17:48:04 +01:00
Set parseMode to html to enable HTML parsing of the message.
2019-06-23 13:07:51 +02:00
2019-12-27 17:48:04 +01:00
Set parseMode to Markdown to enable markown AND html parsing of the message.
2019-06-23 13:07:51 +02:00
The following tags are currently supported:
```html
<br>a newline
<b><i>bold works ok, internal tags are stripped</i> </b>
<strong>bold</strong>
<em>italic</em>
<i>italic</i>
2019-06-24 15:45:02 +02:00
<u>underline</u>
<s>strikethrough</s>
<del>strikethrough</del>
<strike>strikethrough</strike>
2019-06-23 13:07:51 +02:00
<code>inline fixed-width code</code>
<pre>pre-formatted fixed-width code block</pre>
2019-06-24 15:45:02 +02:00
<blockquote>pre-formatted fixed-width code block</blockquote>
2019-06-23 13:07:51 +02:00
<a href="https://github.com">URL</a>
<a href="mention:@danogentili">Mention by username</a>
<a href="mention:186785362">Mention by user id</a>
<pre language="json">Pre tags can have a language attribute</pre>
```
You can also use normal markdown, note that to create mentions you must use the `mention:` syntax like in html:
```markdown
[Mention by username](mention:@danogentili)
[Mention by user id](mention:186785362)
```
2019-12-27 17:48:04 +01:00
MadelineProto supports all html entities supported by [html_entity_decode](http://php.net/manual/en/function.html-entity-decode.php).