Azure Api管理-在开发人员门户上设置网站图标,编辑问候电子邮件模板

ber*_*ner 3 azure azure-management-api

您能帮我解决两个非常简单和明显的问题:

  1. 如何在Azure API管理中的开发人员门户上设置收藏夹图标?
  2. 如何为新创建的用户帐户编辑电子邮件模板?在“通知”选项卡中,除此模板外,还有其他模板。我想念什么吗?

小智 5

您可以使用此脚本更改收藏夹。

<script type="text/javascript">
(function() {
    var link = document.createElement('link');
    link.type = 'image/x-icon';
    link.rel = 'shortcut icon';
    link.href = 'https://blabla.blob.core.windows.net/content/MediaLibrary/CustomAssets/favicon.ico';
    document.getElementsByTagName('head')[0].appendChild(link);
}());
</script>
Run Code Online (Sandbox Code Playgroud)