HelloCho

[Python] http post 방식으로 json Data Parameter 보내기 본문

Python

[Python] http post 방식으로 json Data Parameter 보내기

쵸송 2021. 10. 31. 00:11

http post 방식으로 사용하는 예제입니다.

요청 파라미터는 json을 사용하였습니다.

아래는 예시입니다.

import json
from json.decoder import JSONDecoder
from os import error
import requests

def Send():
    headers = {}
    headers = { 'content-type': 'application/json' }
    
    postData = """[ "variables": {"id": "12345", "input": {"Id": "111", "type": "test", "item": "0", "Id2": "null", "page": "1", "display":10, "info": true }}}]"""

    response = requests.post("https://test.com", headers=headers, data=postData)
    
    return response.text

 

Comments