0
我使用python requests模塊來爬取網站。本網站上的表格需要解決ReCaptcha。我設法使用相同的網站密鑰在本地網站上重新創建此ReCaptcha。如果我在本地網站上解決了ReCaptcha並獲得'g-captcha-response'鍵,我是否可以將此密鑰發佈到原始網站?如果是這樣,那麼這項工作還是Google要求響應密鑰以外的其他信息?從本地網站生成Google ReCaptcha
# I get the response key from my local website
CaptchaKey = response-key
# I post the response key on the original website
request.post(SubmitURL, data={'g-captcha-response': CaptchaKey}
將這項工作?如果是這樣,我該如何檢查請求是否已成功發佈?