1
0
mirror of https://github.com/danog/MadelineProto.git synced 2025-01-08 15:48:19 +01:00
MadelineProto/old_docs/API_docs_v65/methods/phone_setCallRating.md

72 lines
1.5 KiB
Markdown
Raw Normal View History

2017-04-21 13:27:04 +02:00
---
title: phone.setCallRating
2018-03-23 17:44:33 +01:00
description: Set phone call rating
2017-04-21 13:27:04 +02:00
---
## Method: phone.setCallRating
[Back to methods index](index.md)
2018-03-23 17:44:33 +01:00
Set phone call rating
2017-04-21 13:27:04 +02:00
### Parameters:
2018-03-23 17:44:33 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2018-03-27 14:41:50 +02:00
|peer|[InputPhoneCall](../types/InputPhoneCall.md) | Yes|The phone call|
|rating|[int](../types/int.md) | Yes|Rating (1-5 stars)|
|comment|[string](../types/string.md) | Yes|An optional comment|
2017-04-21 13:27:04 +02:00
### Return type: [Updates](../types/Updates.md)
2017-08-28 12:44:50 +02:00
### Can bots use this method: **NO**
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-04-21 13:27:04 +02:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-04-21 13:27:04 +02:00
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2017-04-21 13:27:04 +02:00
2017-07-23 16:33:46 +02:00
$Updates = $MadelineProto->phone->setCallRating(['peer' => InputPhoneCall, 'rating' => int, 'comment' => 'string', ]);
2017-04-21 13:27:04 +02: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
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/phone.setCallRating`
Parameters:
peer - Json encoded InputPhoneCall
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
rating - Json encoded int
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
comment - 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
2017-04-21 13:27:04 +02:00
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
Updates = phone.setCallRating({peer=InputPhoneCall, rating=int, comment='string', })
2017-04-21 13:27:04 +02:00
```
2018-03-27 14:41:50 +02:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|CALL_PEER_INVALID|The provided call peer object is invalid|