Can't save custom connector configuration

最后都变了- 提交于 2021-02-11 16:28:44

问题


I am following the tutorials on https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/tabs/tabs-configuration with the configuration code provided. When I hit save after some seconds I get the error that it was not successful.

As far as I am concerned all needed valid domains are added.

Manifest.json

    {
  "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.3/MicrosoftTeams.schema.json",
  "manifestVersion": "1.3",
  "id": "ec3e802c-506d-4301-9ae4-868b93461ca0",
  "version": "1.0.0",
  "packageName": "com.Package",
  "developer": {
    "name": "Developer",
    "websiteUrl": "https://privateDomain.de",
    "privacyUrl": "https://privateDomain.de",
    "termsOfUseUrl": "https://privateDomain.de"
  },
  "description": {
    "full": "Text",
    "short": "More Text"
  },
  "icons": {
    "outline": "IncomingWebhook.jpg",
    "color": "IncomingWebhook.jpg"
  },
  "connectors": [
    {
      "connectorId": "ec3e802c-506d-4301-9ae4-868b93461ca0",
      "scopes": [
        "team"
      ],
      "configurationUrl": "*linkToConfigurationPage*"
    }
  ],
  "name": {
    "full": "Package",
    "short": "Package"
  },
  "accentColor": "#FFFFFF",
  "validDomains": [
    "bing.com",
    "google.com",
    "*.google.com",
    "*.bing.com",
    "teams-get-started-sample.azurewebsites.net",
    "*.microsoft.com",
    "*.skype.com",
    "*.privateDomain.de",
    "vater-gruppe.de",
    "static2.sharepointonline.com", 
    "secure.aadcdn.microsoftonline-p.com", 
    "code.jquery.com", 
    "statics.teams.microsoft.com", 
    "*.microsoftonline.com", 
    "ajax.googleapis.com"

  ],
  "needsIdentity": "false"
}

The code in the index on the SSL capable server(linkToConfigurationPage) is

`<body>
<form>
  <input type="radio" name="maptype" value="bing" onclick="onClick()"> Bing Maps<br>
  <input type="radio" name="maptype" value="google" onclick="onClick()"> Google Maps
</form> 

<script src="https://statics.teams.microsoft.com/sdk/v1.2/js/MicrosoftTeams.min.js"></script>

<script type="text/javascript">  

microsoftTeams.initialize();
microsoftTeams.settings.registerOnSaveHandler(function(saveEvent){

    var radios = document.getElementsByName("maptype");
    if (radios[0].checked) {
       microsoftTeams.settings.setSettings({
         entityId: "bing",
         contentUrl: "https://www.bing.com/maps/embed",
         suggestedDisplayName: "Bing Map",
         websiteUrl: "https://www.bing.com/maps",
         removeUrl: "https://teams-get-started-sample.azurewebsites.net/tabremove.html",
      });
    } else {
       microsoftTeams.settings.setSettings({
         entityId: "google",
         contentUrl: "https://www.google.com/maps/embed",
         suggestedDisplayName: "Google Map",
         websiteUrl: "https://www.google.com/maps",
         removeUrl: "https://teams-get-started-sample.azurewebsites.net/tabremove.html",
      });
    }
    saveEvent.notifySuccess();


});

function onClick() {
    microsoftTeams.settings.setValidityState(true);

}

</script>
</body>
</html>`

The error message I get is

angular.min.js:112 2018-09-04T09:26:24.007Z Received error from connectors {"seq":1536048346894,"timestamp":1536053183994,"flightSettings":{"Name":"ConnectorFrontEndSettings","AriaSDKToken":"d127f72a3abd41c9b9dd94faca947689-d58285e6-3a68-4cab-a458-37b9d9761d35-7033","SPAEnabled":true,"ClassificationFilterEnabled":true,"ClientRoutingEnabled":true,"EnableYammerGroupOption":true,"EnableFadeMessage":false,"EnableDomainBasedOwaConnectorList":false,"EnableDomainBasedTeamsConnectorList":false,"DevPortalSPAEnabled":true,"ShowHomeNavigationButtonOnConfigurationPage":false},"status":500,"clientType":"SkypeSpaces","connectorType":"ec3e802c-506d-4301-9ae4-868b93461ca0","name":"handleMessageError","nonPIIInfo":"{\"exception\":{}}"}

Can anyone help me what I am doing wrong?


回答1:


The content URL in microsoftTeams.settings.setSettings() is used to handle edits. This URL also need to be under the same domain which is added in Connector Portal's valid domain section. You could try following as your linkToConfigurationPage is already part of valid domains.

 microsoftTeams.settings.setSettings({
         entityId: "bing",
         contentUrl: "*linkToConfigurationPage*",
         suggestedDisplayName: "Bing Map"
      })



回答2:


The solution is to remove the "validDomains" attribute from the generated mainfest.json.



来源:https://stackoverflow.com/questions/52163103/cant-save-custom-connector-configuration

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!