User Profile
PedroKlein
Copper Contributor
Joined 2 years ago
User Widgets
Recent Discussions
Teams message extension on outlook
Hi, We have a message extension on MS Teams that is also showing on outlook. Is there a way to make it Teams only? on the provisioning on the teamsapp.yml we had this: # Extend your Teams app to Outlook and the Microsoft 365 app - uses: teamsApp/extendToM365 with: # Relative path to the build app package. appPackagePath: ./appPackage/build/appPackage.${{TEAMSFX_ENV}}.zip # Write the information of created resources into environment file for # the specified environment variable(s). writeToEnvironmentFile: titleId: M365_TITLE_ID appId: M365_APP_ID This was setting a channel on the Azure Bot Service for Microsoft 365. We removed this and don't have a M365 channel setup anymore, but the message extension is still appearing on outlook, is there another configuration to disable that?520Views0likes5CommentsRe: How to create a teams app id?
HeyPrasad_Das-MSFT, thanks for the quick reply. So the teams app id is just a random generated uuid v4? I ask this because I'm not 100% sure on how to do that step manually, should I just create a new app on the Teams Developer Portal? And by doing so won't this bind the app to my account? What should be the correct way to create the app for a productive scenario? Will it always be bind to a user account?6.2KViews0likes1CommentHow to create a teams app id?
Hi, When using the Teams Toolkit vs code extension to create a teams application it runs the actionteamsApp/createon provision, this is what generates the teams app id right? but where is this created? is it an app registration likebotAadApp/create actioncreates to bind to a azure bot service? How can I manually create this teams app id on azure portal?6.5KViews0likes3CommentsRe: Bot Framework Token Service - Error building redirect URI with query params
Actually the problem is that it is building the redirect_uri (wrongly) with a parameter that it is only supposed to be used in the authorization url so that our auth service can show a different UI for login.977Views0likes3CommentsRe: Bot Framework Token Service - Error building redirect URI with query params
ChetanSharma-msftSure, I am using a very similar login process as this sampleusing the Bot Framework Token Service to manage my OAuth flow, my bot oauth config looks like this: Without the query param siwc=true, the token service is working as expected.1KViews0likes5CommentsBot Framework Token Service - Error building redirect URI with query params
Hi, I am currently using theToken Service with my bot for OAuth authentication with no problems so far, but there was a recent need to add a query parameter into myAuthorization URL in the bot OAuth Connection Settings that seems to be breaking my application. Checking some logs on my authentication service end I notice that the final redirect URI is being wrongly build. This is my url in theAuthorization URL field at theOAuth Connection Settings, with a fictional domain: https://www.authservicehere.com/oauth2/v0/authorize?siwc=true This is the redirect being generate by the Token Service: https://www.authservicehere.com/oauth2/v0/authorize?redirect_uri=https://token.botframework.com/.auth/web/redirect&siwc=true?client_id=xxxxxx Notice that it should bea & after the siwc param, the correct redirect URI would be: https://www.authservicehere.com/oauth2/v0/authorize?redirect_uri=https://token.botframework.com/.auth/web/redirect&siwc=true&client_id=xxxxxx It could also be without the siwc param, since its only used in the authorization url like so: https://www.authservicehere.com/oauth2/v0/authorize?redirect_uri=https://token.botframework.com/.auth/web/redirect&client_id=xxxxxx Is this an expected behavior? How can I deal with params in my authorization URL? Thanks.1.1KViews0likes8CommentsBot Framework Token Service not working
Hi, I am currently trying to login a user in a message extension app following this documentationand using the Bot Framework Token Servicebut there seems to be an error in the callback page. I can do all the auth flow as expected, but once I finish my login, I'm redirected tohttps://token.botframework.com/api/oauth/PostSignInCallback?signin={uuid-here}&code={code-here}and them nothing happens. I open up the logs from the page and notice that it is not importing the Teams JS library client. Is this an error on token service or I'am implementing something wrong? It is worth saying that this also happens in any sample provided using the token service such as this one. Thanks.1.1KViews0likes4Comments
Groups
Recent Blog Articles
No content to show