0

SharePoint をオンラインで接続しようとしていますが、次のコードを使用しましたが、表示されている応答は request failed です。次のコードを試しました

@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.*;
import groovyx.net.http.HTTPBuilder;
import static groovyx.net.http.Method.GET;
import static groovyx.net.http.ContentType.TEXT;
import groovyx.net.http.RESTClient
import groovy.util.slurpersupport.GPathResult
import static groovyx.net.http.ContentType.URLENC
import groovyx.net.http.URIBuilder

def authSite = new HTTPBuilder( 'https://xyzsharepoint.com' );
authSite.auth.basic 'username', 'password';
authSite.request(GET) { req->
    response.success = { resp->
        println'request was successful'
        assert resp.status<400
    }
    response.failure = { resp ->
        println'request failed'
        assert resp.status>=400
    }
}

私がどこで間違ったのか教えてください。

4

0 に答える 0