简体   繁体   中英

How can I send this request using python requests library

How to send the below request using python requests library?

Request:

要求

I have tried

with requests.Session() as session:
    // Some login action

    url = f'http://somewebsite.com/lib/ajax/service.php?key={key}&info=get_enrolled'
    json_data = {
        "index": 0,
        "methodname": "get_enrolled",
        // And so on, from Request Body
    }

    r = session.post(url, json=json_data)

But it doesn't give the output I want.

1.Define a POST request method

import urllib3
import urllib.parse

def request_with_url(url_str, parameters=None):
    """
    https://urllib3.readthedocs.io/en/latest/user-guide.html
    """
    http = urllib3.PoolManager()
    response = http.request("POST",
                            url_str, 
                            headers={ 
                                'Content-Type' : 'application/json' 
                            },
                            body=parameters)
    resp_data = str(response.data, encoding="utf-8")
    return resp_data

2.Call the function with your specific url and parameters

json_data = {
        "index": 0,
        "methodname": "get_enrolled",
        // And so on, from Request Body
    }
key = "123456"
url = "http://somewebsite.com/lib/ajax/service.php?key={0}&info=get_enrolled".format(key)

request_with_url(url, json_data)

With no more info what you want and from what url it is hard to help but. But try adding headers with the user-agent to the post. More headers may be needed, but User-Agent is a header that is often required.

with requests.Session() as session:
    // Some login action

    url = f'http://somewebsite.com/lib/ajax/service.php?key={key}&info=get_enrolled'
    json_data = {
        "index": 0,
        "methodname": "get_enrolled",
        // And so on, from Request Body
    }
    headers = {'User-Agent': 'Mozilla/5.0'}
    r = session.post(url, json=json_data, headers=headers)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM