0

我正在尝试使用 groovy 脚本提取 sharepoint2010 Cloud List 值。但我遇到了 403 Forbidden 错误。我对 Sharepoint2010 Cloud 和 Groovy 完全陌生。我尝试了以下导致 403 错误的代码。

@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.5.0-RC2' )
import groovyx.net.http.*
import static groovyx.net.http.ContentType.*
import static groovyx.net.http.Method.*

def authSite = new HTTPBuilder( 'https://mysharepointwebsite' )
authSite.auth.basic 'username', 'password'
String restUrl="https://mysharepointwebsite/site/_vti_bin/listdata.svc/Listname"
println(restUrl.toURL().text)

我需要以 XML 的形式提取列表值。这是正确的做法吗?请帮助我哪里出了问题。在此先感谢。

4

0 回答 0