You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
When using generic oauth mechanisms for authentication, the link returned by the authentication mechanism is not encapsulated, so it is not easily clicked on, on a mobile device. In order to retrieve the magic string for authentication from bot framework, the user has to copy paste the string into a note, remove some verbiage and then repaste the link into a mobile browser.
Code Example
var tokenResponse = Context.GetUserTokenAsync(string connectionName);
Reproduction Steps
Ensure generic oauth setup on bot framework azure resource
Attempt to get token through "context.GetUserTokenAsync"
Observe link sent back by bot framework for magic code.
Expected Behavior
The full provided link is clickable in SMS (iOS) app. The user should not have to cut and paste the link, but be able to click to launch it in a mobile browser.
Actual Results
The link is cut and the user has to copy paste and "clean" (remove verbiage) from the provided link before pasting into browser.