I am not able to process the user provided image to forward same image in bot output. if user sent only text to the bot, all worked without any issues. But when user provide a photo with text to the bot, it doesn't work as expected.
Using below code
file_get_contents("https://api.telegram.org/bot(token)/sendMessage?chat_id=".$chatID."&text=".urlencode($text));
i also tried sendphoto funtion but no luck.
It happens because you use not correct method to send message with photo. You should use
sendPhoto
notsendMessage
. To forward photo to other user using telegram bot, you should find out link of it, just check the format in which the message with the photo arrives, there will be the link as well.For example I am using curl PHP method to send "POST" request not "GET":