Bug Description
When you call the reactions API, I can't seem to add a reaction.
ctx.api.reactions.add(ctx.activity.conversation.id, ctx.activity.id, "heart")
results in:
405 Method Not Allowed
While await app.api.reactions.add(ctx.activity.conversation.id, ctx.activity.id, "heart") results in:
results in:
404 Not Found
I based it on this code: https://github.com/microsoft/teams.py/blob/main/examples/reactions/src/main.py
Steps to Reproduce
- Send a message to the bot
- Try to add a reaction to the message
- Get errors
Expected Behavior
That the reaction is added to the message
Actual Behavior
HTTP errors
SDK Version
2.0.0a20
Python Version
3.14.2
Additional Context
No response
Bug Description
When you call the reactions API, I can't seem to add a reaction.
ctx.api.reactions.add(ctx.activity.conversation.id, ctx.activity.id, "heart")results in:
405 Method Not AllowedWhile
await app.api.reactions.add(ctx.activity.conversation.id, ctx.activity.id, "heart")results in:results in:
404 Not FoundI based it on this code: https://github.com/microsoft/teams.py/blob/main/examples/reactions/src/main.py
Steps to Reproduce
Expected Behavior
That the reaction is added to the message
Actual Behavior
HTTP errors
SDK Version
2.0.0a20
Python Version
3.14.2
Additional Context
No response