Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
Yitong Feng committed Mar 17, 2021
1 parent 267113c commit 92de7ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion samples/msgext-search-sso-config/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MicrosoftAppId=d9dd7f95-ce59-4c16-abf2-378569eee647
MicrosoftAppPassword=81n5x5.lGyE1p_OKN5oJt2F4__w_32FNqz
connectionName=YifeBotConnect
SiteUrl=https://497b94975bbe.ngrok.io
SiteUrl=https://5bc254477ba4.ngrok.io
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class TeamsMessagingExtensionsSearchAuthConfigBot extends TeamsActivityHandler {

return {
composeExtension: {
type: 'auth',
type: 'silentAuth',
suggestedActions: {
actions: [
{
Expand Down Expand Up @@ -165,7 +165,7 @@ class TeamsMessagingExtensionsSearchAuthConfigBot extends TeamsActivityHandler {

return {
composeExtension: {
type: 'auth',
type: 'silentAuth',
suggestedActions: {
actions: [
{
Expand Down Expand Up @@ -401,7 +401,7 @@ class TeamsMessagingExtensionsSearchAuthConfigBot extends TeamsActivityHandler {
if (!tokenExchangeResponse || !tokenExchangeResponse.token) {
return false;
}
console.log('Exchanged token: ' + tokenExchangeResponse);
console.log('Exchanged token: ' + tokenExchangeResponse.token);
return true;
}
}
Expand Down

0 comments on commit 92de7ef

Please sign in to comment.