Replies: 2 comments
-
|
If anyone from the team or community can provide any suggestion/solution, it would be a big help. Thanks |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
This PR from @heyitsaamir might improve things in the proactive notification area: microsoft/teams.py#249
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
In one of our use cases, i want to send the proactive message (notification to the user using some adaptive card or some message from time to time). But this message will be triggered by some external system on
/api/notifypath. Currently, I don't see any direct way to mount the router to existing Fastpi server (atleast not clear from python documetnation).currently that's how I have tried to implement the functionality:
Note: I'm currently running the app using VS Code 365 agent toolkit and 365 agent playground. But when using the external system, I'm hitting this URL ("/api/notify"), and I'm getting an
app not startederror. When I debug the issue, it is related to the bot credential. Do we have a way using which we don't need to register on Azure Bot Service and get the bot_id, secret etc.Basically, when I'm using `app.send(conversation_id, messageactivtiy), it checks for app.id (app.credentials basically). Also, how do you secure this URL since this will be a public URL from the teams side once deployed, so that not everyone can hit it? Do we have any way directly in the SDK.
Also, for security purposes, will this SDK automatically take care of authentication, or do we need to manually take care of things since many of the things are not clear from the documentation, and we don't have api reference for this SDK?
Beta Was this translation helpful? Give feedback.
All reactions