Ckfinder Azure以编程方式设置后端

时间:2018-07-31 08:01:24

标签: asp.net asp.net-mvc azure web-config ckfinder

我想将Azure设置为CKFinder的后端,我想从AppSettings中读取值(帐户,密码),而不是从CKFinder设置中读取后端的值。 像这样:

    <add key="CKFinderBackendAccountName" value="**********" />
    <add key="CKFinderBackendAccountKey" value="************" />

到目前为止,我已经有了这段代码,我只希望从APPSettings中读取Azure帐户和密码。我在ConnectorBuilder中没有看到coresponding属性。有人可以帮忙吗?

connectorBuilder.LoadConfig()
                .SetLicense(licenceDomain, licenceKey)
                .SetAuthenticator(customAuthenticator)
                .SetRequestConfiguration(
                    (request, config) =>
                    {                        
                        config.LoadConfig();
                        var defaultBackend = config.GetBackend("azureBackend");}

0 个答案:

没有答案