MadelineProto/old_docs/API_docs_v38/methods/channels_joinChannel.md
2017-12-11 12:12:38 +01:00

66 lines
1.4 KiB
Markdown

---
title: channels.joinChannel
description: channels.joinChannel parameters, return type and example
---
## Method: channels.joinChannel
[Back to methods index](index.md)
### Parameters:
| Name | Type | Required |
|----------|---------------|----------|
|channel|[InputChannel](../types/InputChannel.md) | Yes|
### Return type: [Updates](../types/Updates.md)
### Can bots use this method: **NO**
### Errors this method can return:
| Error | Description |
|----------|---------------|
|CHANNEL_INVALID|The provided channel is invalid|
|CHANNEL_PRIVATE|You haven't joined this channel/supergroup|
|CHANNELS_TOO_MUCH|You have joined too many channels/supergroups|
### Example:
```
$MadelineProto = new \danog\MadelineProto\API();
$MadelineProto->session = 'mySession.madeline';
if (isset($number)) { // Login as a user
$MadelineProto->phone_login($number);
$code = readline('Enter the code you received: '); // Or do this in two separate steps in an HTTP API
$MadelineProto->complete_phone_login($code);
}
$Updates = $MadelineProto->channels->joinChannel(['channel' => InputChannel, ]);
```
Or, if you're using the [PWRTelegram HTTP API](https://pwrtelegram.xyz):
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.joinChannel`
Parameters:
channel - Json encoded InputChannel
Or, if you're into Lua:
```
Updates = channels.joinChannel({channel=InputChannel, })
```