We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Bug Report
I have read:
I am using the latest version of the library.
bot.forwardMessages( chatId, fromChatId, [idA, idB] );
Server return 400 Bad Request: message identifiers are not specified
400 Bad Request: message identifiers are not specified
body: 'chat_id=<chatId>&from_chat_id=<fromChatId>&message_ids[0]=idA&message_ids[1]=idB'
I try to change the code, it work
bot.forwardMessages( chatId, fromChatId, JSON.stringify([idA, idB]) );
It appears that Server does not receive arr in that form
The text was updated successfully, but these errors were encountered:
fix: forwardMessages yagop#1215
ac82d63
No branches or pull requests
I have read:
I am using the latest version of the library.
Expected Behavior
Actual Behavior
Server return
400 Bad Request: message identifiers are not specified
body: 'chat_id=<chatId>&from_chat_id=<fromChatId>&message_ids[0]=idA&message_ids[1]=idB'
I try to change the code, it work
It appears that Server does not receive arr in that form
Steps to reproduce the Behavior
The text was updated successfully, but these errors were encountered: