我正在使用this API和this is my program。Pastebin API錯誤:錯誤的API請求無效api_paste_format
每當我嘗試發送糊狀引擎收錄我的API中得到77行錯誤:
return resp;
我不知道我應該做的,以使後發送成功。
型 'PasteBin.PasteBinApiException' 的第一次機會異常出現在WinForms_Run.exe其他信息:壞API請求,無效api_paste_format
任何幫助深表感謝。
我正在使用this API和this is my program。Pastebin API錯誤:錯誤的API請求無效api_paste_format
每當我嘗試發送糊狀引擎收錄我的API中得到77行錯誤:
return resp;
我不知道我應該做的,以使後發送成功。
型 'PasteBin.PasteBinApiException' 的第一次機會異常出現在WinForms_Run.exe其他信息:壞API請求,無效api_paste_format
任何幫助深表感謝。
你遇到的異常實際上是在之前的行return resp
。
您應該在PasteBinClient
的第75行上放置斷點並評估resp
變量的內容。
基礎上pastebin API documentation,你應該得到一個消息,告訴你到底有什麼錯你的要求:
Bad API request, invalid api_option
Bad API request, invalid api_dev_key
Bad API request, IP blocked
... etc
編輯:invalid api_paste_format
:用戶用精確的問題發表了評論。
在您的程序(第31行)中,您傳遞的是「無」作爲格式 - 是否嘗試過「文本」,正如API文檔所建議的那樣?
不要想你可以在這裏包含的錯誤信息...... –
型「PasteBin.PasteBinApiException」的第一個機會異常WinForms_Run.exe 發生其他信息:錯誤的API請求,無效api_paste_format – Skylark