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
Due to intermittent error from cdnjs when restoring necessary javascript libraries, FAQ Plus configuration app deployment may fail when you try FAQ Plus sample. You will see following page in this case.
We're working on a workaround and will add workaround to this issue later.
The text was updated successfully, but these errors were encountered:
Here is a workaround to replace the step 4 in deploy-qna-maker-services.md.
Create a configuration table in your AAD Storage Instance.
The table name must be ConfigurationInfo.
After creating the configuration table, click Add Entity
Edit the configuration table to add Team ID and Knowledge base ID: (PartitionKey=ConfigurationInfo, RowKey=KnowledgeBaseId/TeamId). The property name of data should be "Data".
(i) If you want to insert a KnowledgeBaseId, then set RowKey= KnowledgeBaseId
(ii) You need to use the following C# code snippet to trans your raw team link string to a storable one.
using System.Text.RegularExpressions;
using System.Web;
public class Example {
public static void Main() {
var teamIdDeepLink = "<YOUR_TEAM_LINK>"; // For example: "https://teams.microsoft.com/l/team/19%3a9M4Dz_-DQsKsqV0MfFjmpRz4Np0dcidgmIv6OkWGMwM1%40thread.tacv2/conversations?groupId=fee6b738-335e-4882-9105-92c9fd6d71c6&tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47"
var match = Regex.Match(teamIdDeepLink, @"teams.microsoft.com/l/team/(\S+)/");
Console.Write(HttpUtility.UrlDecode(match.Groups[1].Value));
}
}
After run the code above, you'll get a string in your terminal like this (the green string):
Then go to Azure portal, find the storage table in your resource group, and add a new entity. Set RowKey=TeamId, Data=<the_green_string_above>
Due to intermittent error from cdnjs when restoring necessary javascript libraries, FAQ Plus configuration app deployment may fail when you try FAQ Plus sample. You will see following page in this case.
We're working on a workaround and will add workaround to this issue later.
The text was updated successfully, but these errors were encountered: