Spaces:
Running
on
Zero
Running
on
Zero
File size: 717 Bytes
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 |
import requests
def post_data(url, word, thread):
# 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)
|