c# – pastebin API出错:API请求错误,api_paste_format无效
作者:互联网
我正在使用this API和this is my program.
每当我尝试将粘贴发送到pastebin时,我在API中的第77行都会收到错误:
return resp;
我不确定我应该怎样做才能使帖子成功发送.
A first chance exception of type ‘PasteBin.PasteBinApiException’ occurred in WinForms_Run.exe Additional information: Bad API request, invalid api_paste_format
任何帮助深表感谢.
解决方法:
您遇到的异常实际上是在返回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
编辑:用户评论确切的问题:api_paste_format无效.
在您的程序(第31行)中,您传递“无”作为格式 – 您是否按照API文档的建议尝试了“文本”?
标签:c,pastebin 来源: https://codeday.me/bug/20190624/1278203.html