0
我有一個簡單的長輪詢事情使用python3
和requests
包。目前,它看起來像:從python3請求生成http錯誤
def longpoll():
session = requests.Session()
while True:
try:
fetched = session.get(MyURL)
input = base64.b64decode(fetched.content)
output = process(data)
session.put(MyURL, data=base64.b64encode(response))
except Exception as e:
print(e)
time.sleep(10)
有一種情況,而不是process
荷蘭國際集團的輸入和put
荷蘭國際集團的結果的情況下,我想提出一個HTTP錯誤。是否有一個簡單的方法可以從高層次Session
界面執行此操作?還是我不得不向下鑽取以使用較低級別的對象?
您是否也可以控制遠程服務器? –
是的,我也控制了遠程服務器。 –