Answer the question
In order to leave comments, you need to log in
How to remove the URL of the preview image, and leave the image itself in the Telegram post?
Please tell me how to completely remove the URL of the image that is inserted at the very top of the post for the preview, but the image itself in the preview should remain? It is necessary to remove the URL, not hide it. I read about methods to put a dot or spaces or all sorts of different characters in the link, but when you click on the post and click copy text, the link is copied, and it needs to be completely removed from visibility.
My telegram posts are fasting automatically, through the API from posts in WordPress. Just in case, I'll paste the code:
<?php
//## NextScripts TG Connection Class
$nxs_snapAPINts[] = array('code'=>'TG', 'lcode'=>'tg', 'name'=>'Telegram');
if (!class_exists("nxs_class_SNAP_TG")) { class nxs_class_SNAP_TG {
var $ntCode = 'TG';
var $ntLCode = 'tg';
function doPost($options, $message){ if (!is_array($options)) return false; $out = array();
foreach ($options as $ii=>$ntOpts) $out[$ii] = $this->doPostToNT($ntOpts, $message);
return $out;
}
function nxs_getHeaders($ref, $post=false){ $hdrsArr = array(); $proxy = array();
$hdrsArr['X-Requested-With']='XMLHttpRequest'; $hdrsArr['Connection']='keep-alive'; $hdrsArr['Referer']=$ref;
$hdrsArr['User-Agent']='Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.22 Safari/537.11';
if($post) $hdrsArr['Content-Type']='application/x-www-form-urlencoded'; $hdrsArr['Accept']='application/json, text/javascript, */*; q=0.01';
$hdrsArr['Accept-Encoding']='gzip,deflate,sdch'; $hdrsArr['Accept-Language']='en-US,en;q=0.8'; $hdrsArr['Accept-Charset']='ISO-8859-1,utf-8;q=0.7,*;q=0.3'; return $hdrsArr;
}
function doPostToNT($options, $message){ global $nxs_gCookiesArr; $badOut = array('pgID'=>'', 'isPosted'=>0, 'pDate'=>date('Y-m-d H:i:s'), 'Error'=>''); $proxy = array();
//## Check settings
if (!is_array($options)) { $badOut['Error'] = 'No Options'; return $badOut; } if (empty($options['botTkn'])) { $badOut['Error'] = 'Not Configured'; return $badOut; }
//## Format
if (!empty($message['pText'])) $msg = $message['pText']; else $msg = nxs_doFormatMsg($options['msgFormat'], $message); if (empty($options['imgSize'])) $options['imgSize'] = '';
if (isset($message['imageURL'])) $imgURL = trim(nxs_getImgfrOpt($message['imageURL'], $options['imgSize'])); else $imgURL = '';
$urlToGo = (!empty($message['url']))?$message['url']:''; if (!isset($options['webPrev'])) $options['webPrev'] = 1;
if (!empty($options['proxy'])&&!empty($options['proxyOn'])){ $proxy['proxy'] = $options['proxy']['proxy']; if (!empty($options['proxy']['up'])) $proxy['up'] = $options['proxy']['up']; }
if (substr($options['whToPost'],0,1)=='g') $options['whToPost'] = substr_replace($options['whToPost'], '-',0,1); //## Fix for Groups ID
//## Attach Image (Upload from tmp was here before version 4)
if ($options['attchImg']=='1') { $url = 'https://api.telegram.org/bot'.$options['botTkn'].'/sendPhoto';
$flds = array( 'chat_id' => $options['whToPost'],'photo' => $imgURL, 'caption' => '' );
$hdrsArr = $this->nxs_getHeaders('https://api.telegram.org', true);
$advSet = nxs_mkRemOptsArr($hdrsArr, '', $flds, $proxy); $ret = nxs_remote_post( $url, $advSet); if (is_nxs_error($ret)) { $badOut = print_r($ret, true)." - ERROR"; return $badOut; }
}
$msg = str_ireplace('<strong>','<b>',str_ireplace('</strong>','</b>',str_ireplace('<em>','<i>',str_ireplace('</em>','</i>',$msg)))); $msg = nsTrnc(strip_tags($msg, '<b><i><a><code><pre>'), 3000); $url = 'https://api.telegram.org/bot'.$options['botTkn'].'/sendMessage';
$flds = array('chat_id' => $options['whToPost'], 'text' => $msg, 'parse_mode' => 'HTML', 'disable_web_page_preview' => $options['webPrev']=='0'); $hdrsArr = $this->nxs_getHeaders('https://api.telegram.org', true);
$advSet = nxs_mkRemOptsArr($hdrsArr, '', $flds, $proxy); $ret = nxs_remote_post( $url, $advSet); if (is_nxs_error($ret)) { $badOut = print_r($ret, true)." - ERROR"; return $badOut; }
$contents = $ret['body']; $resp = json_decode($contents, true); // prr($resp);
if (is_array($resp) && !empty($resp['ok']) && $resp['ok'] == 1 ) { if (empty($resp['result']['chat']['username'])) $purl = 'https://web.telegram.org/#/im?p='.str_replace('-','g',$resp['result']['chat']['id']); else $purl = 'http://telegram.me/'.$resp['result']['chat']['username'];
return array('postID'=>$resp['result']['message_id'], 'isPosted'=>1, 'postURL'=>$purl, 'pDate'=>date('Y-m-d H:i:s'));
} else $badOut['Error'] .= 'Something went wrong - '.print_r($ret, true);
return $badOut;
}
}}
?>
</code>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question