MadelineProto/docs/API_docs/methods/messages_setInlineBotResults.md

42 lines
1.3 KiB
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
title: messages_setInlineBotResults
---
2016-12-19 19:20:07 +01:00
## Method: messages\_setInlineBotResults
2016-12-20 13:15:22 +01:00
[Back to methods index](index.md)
### Parameters:
| Name | Type | Required |
|----------|:-------------:|---------:|
|gallery|[Bool](../types/Bool.md) | Optional|
|private|[Bool](../types/Bool.md) | Optional|
|query\_id|[long](../types/long.md) | Required|
|results|Array of [InputBotInlineResult](../types/InputBotInlineResult.md) | Required|
|cache\_time|[int](../types/int.md) | Required|
|next\_offset|[string](../types/string.md) | Optional|
|switch\_pm|[InlineBotSwitchPM](../types/InlineBotSwitchPM.md) | Optional|
### Return type: [Bool](../types/Bool.md)
### Example:
```
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
2016-12-19 19:20:07 +01:00
$Bool = $MadelineProto->messages_setInlineBotResults(['gallery' => Bool, 'private' => Bool, 'query_id' => long, 'results' => [InputBotInlineResult], 'cache_time' => int, 'next_offset' => string, 'switch_pm' => InlineBotSwitchPM, ]);
```