How to access a sharepoint site via the REST API in Python?

前端 未结 4 1563
深忆病人
深忆病人 2020-12-07 17:20

I have the following site in SharePoint 2013 in my local VM:

http://win-5a8pp4v402g/sharepoint_test/site_1/

When I access this from the browser,

4条回答
  •  余生分开走
    2020-12-07 17:21

    Here is an examples of SharePoint 2016 REST API call from Python to create a site.

    import requests,json,urllib
    from requests_ntlm import HttpNtlmAuth
    
    root_url = "https://sharepoint.mycompany.com"
    headers = {'accept': "application/json;odata=verbose","content-type": "application/json;odata=verbose"}
    ##"DOMAIN\username",password 
    auth = HttpNtlmAuth("MYCOMPANY"+"\\"+"UserName",'Password')
    
    
    def getToken():
        contextinfo_api = root_url+"/_api/contextinfo"
        response = requests.post(contextinfo_api, auth=auth,headers=headers)
        response =  json.loads(response.text)
        digest_value = response['d']['GetContextWebInformation']['FormDigestValue']
        return digest_value
    
    def createSite(title,url,desc):
        create_api = root_url+"/_api/web/webinfos/add"
        payload = {'parameters': {
                '__metadata':  {'type': 'SP.WebInfoCreationInformation' },
                'Url': url,
                'Title': title,
                'Description': desc,
                'Language':1033,
                'WebTemplate':'STS#0',
                'UseUniquePermissions':True}
            }
        response = requests.post(create_api, auth=auth,headers=headers,data=json.dumps(payload))
        return json.loads(response.text)
    
    headers['X-RequestDigest']=getToken()
    print createSite("Human Resources","hr","Sample Description")
    

提交回复
热议问题