Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,353 Bytes
cae39bc caf0df7 1acb286 caf0df7 b8051ef caf0df7 2368dfd cae39bc 2368dfd cae39bc 1940551 cae39bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
import requests
def post_data_line(url, body,headers):
# POSTリクエストのペイロード
payload = body
# ヘッダーの設定(必要に応じて)
#$headers = {
# 'Content-Type': 'application/json'
#}
#
# POSTリクエストの送信
#response = requests.post(url, json=payload, headers=headers)
response = requests.post(url, headers=headers, data=body)
# レスポンスのステータスコードを表示
print(f'Status Code: {response.status_code}')
# レスポンスの内容を表示
print(f'Response Content: {response.content.decode()}')
return response
def post_data(url, word, thread,headers):
# POSTリクエストのペイロード
payload = {
'word': word,
'thread': thread
}
# ヘッダーの設定(必要に応じて)
#$headers = {
# 'Content-Type': 'application/json'
#}
# POSTリクエストの送信
response = requests.post(url, json=payload, headers=headers)
# レスポンスのステータスコードを表示
print(f'Status Code: {response.status_code}')
# レスポンスの内容を表示
print(f'Response Content: {response.content.decode()}')
return response
# 使用例
#url = ''
#word = 'example_word'
#thread = 'example_thread'
#post_data(url, word, thread)
|