gpt4 book ai didi

javascript - 增加共享点跨域库中的响应大小限制

转载 作者:行者123 更新时间:2023-11-28 07:19:12 25 4
gpt4 key购买 nike

如上所述here ,当使用带有 Web 代理的跨域库时,预期响应大小不应超过 200 kb。是否可以增加此限制?

我正在尝试构建一个共享点托管的应用程序。

最佳答案

Here我找到了一个适合我的解决方案。我在本地:

$contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$type = $contentService.gettype()
$config = new-object Microsoft.SharePoint.SPWebProxyConfig
$configType = $config.gettype()
$methods = $Type.GetMethods() | where-object {$_.Name -eq "GetChild"}
$gm = $methods[1].MakeGenericMethod($configType)
$realConfig = $gm.Invoke( $contentService , $null)
if ($realConfig -eq $Null)
{
$config.update()
$realConfig = $gm.Invoke( $contentService , $null)
}
$realConfig.MaxResponseSize = 400000 #this is an Integer so up to 2GB
$realConfig.update()

关于javascript - 增加共享点跨域库中的响应大小限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30501301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com