Telethon/methods/photos/upload_contact_profile_photo.html
2024-11-17 22:32:52 +01:00

37 lines
4.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>UploadContactProfilePhotoRequest</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link id="style" href="../../css/docs.dark.css" rel="stylesheet">
<script>
document.getElementById("style").href = "../../css/docs."
+ (localStorage.getItem("theme") || "light")
+ ".css";
</script>
<link href="https://fonts.googleapis.com/css?family=Nunito|Source+Code+Pro"
rel="stylesheet">
</head>
<body>
<div id="main_div"><ul class="horizontal"><li><a href="../../index.html">API</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="../index.html">Methods</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="index.html">Photos</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="upload_contact_profile_photo.html">UploadContactProfilePhotoRequest</a></li></ul><h1>UploadContactProfilePhotoRequest</h1><p>Both users and bots <strong>may</strong> be able to use this request. <a href="#examples">See code examples.</a></p><pre>---functions---
photos.uploadContactProfilePhoto#e14c4a71 flags:# suggest:flags.3?<a href="../../index.html#true">true</a> save:flags.4?<a href="../../index.html#true">true</a> user_id:<a href="../../types/input_user.html">InputUser</a> file:flags.0?<a href="../../types/input_file.html">InputFile</a> video:flags.1?<a href="../../types/input_file.html">InputFile</a> video_start_ts:flags.2?<a href="../../index.html#double">double</a> video_emoji_markup:flags.5?<a href="../../types/video_size.html">VideoSize</a> = <a href="../../types/photos/photo.html">photos.Photo</a></pre><button onclick="cp('from telethon.tl.functions.photos import UploadContactProfilePhotoRequest');">Copy import to the clipboard</button><h3>Returns</h3><table><tr><td><a href="../../types/photos/photo.html">photos.Photo</a></td></tr></table><p>This type can only be an instance of:</p><table><tr><td><a href="../../constructors/photos/photo.html">Photo</a></td></tr></table><h3>Parameters</h3><table><tr><td><b>user_id</b></td><td style="text-align:center"><a href="../../types/input_user.html">InputUser</a></td><td>Anything entity-like will work if the library can find its <code>Input</code> version (e.g., usernames, <code>Peer</code>, <code>User</code> or <code>Channel</code> objects, etc.).</td></tr><tr><td><b>suggest</b></td><td style="text-align:center"><a href="../../index.html#true">flag</a></td><td>This argument defaults to <code>None</code> and can be omitted.</td></tr><tr><td><b>save</b></td><td style="text-align:center"><a href="../../index.html#true">flag</a></td><td>This argument defaults to <code>None</code> and can be omitted.</td></tr><tr><td><b>file</b></td><td style="text-align:center"><a href="../../types/input_file.html">InputFile</a></td><td>This argument defaults to <code>None</code> and can be omitted.</td></tr><tr><td><b>video</b></td><td style="text-align:center"><a href="../../types/input_file.html">InputFile</a></td><td>This argument defaults to <code>None</code> and can be omitted.</td></tr><tr><td><b>video_start_ts</b></td><td style="text-align:center"><a href="../../index.html#double">double</a></td><td>This argument defaults to <code>None</code> and can be omitted.</td></tr><tr><td><b>video_emoji_markup</b></td><td style="text-align:center"><a href="../../types/video_size.html">VideoSize</a></td><td>This argument defaults to <code>None</code> and can be omitted.</td></tr></table><h1>Known RPC errors</h1><p>This request can't cause any RPC error as far as we know.</p><h1 id="examples">Example</h1><pre><strong>from</strong> telethon.sync <strong>import</strong> TelegramClient
<strong>from</strong> telethon <strong>import</strong> functions, types
<strong>with</strong> TelegramClient(name, api_id, api_hash) <strong>as</strong> client:
result = client(functions.photos.UploadContactProfilePhotoRequest(
user_id=<em>'username'</em>,
suggest=<strong>True</strong>,
save=<strong>True</strong>,
file=client.upload_file(<em>'/path/to/file.jpg'</em>),
video=client.upload_file(<em>'/path/to/file.mp4'</em>),
video_start_ts=7.13,
video_emoji_markup=types.VideoSize(
type=<em>'some string here'</em>,
w=42,
h=42,
size=42,
video_start_ts=7.13
)
))
print(result.stringify())</pre><textarea id="c" class="invisible"></textarea><script>function cp(t){var c=document.getElementById("c");c.value=t;c.select();try{document.execCommand("copy")}catch(e){}}</script></div><script>prependPath = "../../";</script><script src="../../js/search.js"></script></body></html>