-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix CTBot::sendCommand - json emply #85
Comments
Thank you it works like a charm |
Perfect! Thanks! |
Perfect. i wrote issue #84 some days ago. now it works, here is my configuration:
|
Thanks a lot, @VashCrHm |
could you drop the sytax for me so I can try it? Thanks |
Many thanks VashCrHm, I'm updating the two library and soon I'll draft a new release. UPDATE I've uploaded a quick fix in the v3.0.0 branch. |
i hope so... because i really need it for college assignment |
I have just published a new release (2.1.6) with fixes suggested (and verified) in this thread. Cheers Stefano |
Grat job!!!!!!!!!! |
What is a sytax? i ve modified the file in library as shown in top of this Issue, and it's working now. By the way it's working since yesterday so maybe we solved the issue ;-) |
Had the same issue, connection with telegram server failed after my esp8266 was running for >1 year. |
From the date 21-06-2021 16:00 is necessary add "https://api.telegram.org";
const String URL = (String)"GET /bot" + m_token + (String)"/" + command + parameters;
to
const String URL = (String)"GET https://api.telegram.org/bot" + m_token + (String)"/" + command + parameters;
File CTBot.cpp, line 30
(because it receives html code as a response, no json file)
I hope it will be of help, greetings :)
The text was updated successfully, but these errors were encountered: