1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-13 18:27:19 +01:00
MadelineProto/old_docs/API_docs_v65/methods/contest_saveDeveloperInfo.md

85 lines
2.0 KiB
Markdown
Raw Normal View History

2017-04-21 13:27:04 +02:00
---
title: contest.saveDeveloperInfo
2018-03-23 17:44:33 +01:00
description: Save developer info for telegram contest
2017-04-21 13:27:04 +02:00
---
## Method: contest.saveDeveloperInfo
[Back to methods index](index.md)
2018-03-23 17:44:33 +01:00
Save developer info for telegram contest
2017-04-21 13:27:04 +02:00
### Parameters:
2018-03-23 17:44:33 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|vk\_id|[CLICK ME int](../types/int.md) | Yes|VK user ID|
|name|[CLICK ME string](../types/string.md) | Yes|Name|
|phone\_number|[CLICK ME string](../types/string.md) | Yes|Phone number|
|age|[CLICK ME int](../types/int.md) | Yes|Age|
|city|[CLICK ME string](../types/string.md) | Yes|City|
2017-04-21 13:27:04 +02:00
### Return type: [Bool](../types/Bool.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:
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';
// !!! This API id/API hash combination will not work !!!
// !!! You must get your own @ my.telegram.org !!!
$api_id = 0;
$api_hash = '';
$MadelineProto = new \danog\MadelineProto\API('session.madeline', ['app_info' => ['api_id' => $api_id, 'api_hash' => $api_hash]]);
$MadelineProto->start();
2017-04-21 13:27:04 +02:00
2017-07-23 16:33:46 +02:00
$Bool = $MadelineProto->contest->saveDeveloperInfo(['vk_id' => int, 'name' => 'string', 'phone_number' => 'string', 'age' => int, 'city' => '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
### As a bot:
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - contest.saveDeveloperInfo
2017-07-23 16:40:54 +02:00
* params - `{"vk_id": int, "name": "string", "phone_number": "string", "age": int, "city": "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/contest.saveDeveloperInfo`
Parameters:
vk_id - Json encoded int
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
name - Json encoded string
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
phone_number - Json encoded string
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
age - Json encoded int
2017-08-20 19:09:52 +02:00
2017-07-23 16:11:02 +02:00
city - 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
Bool = contest.saveDeveloperInfo({vk_id=int, name='string', phone_number='string', age=int, city='string', })
2017-04-21 13:27:04 +02:00
```