Pastebin.com 帖子
我正在尝试通过 Javascript 中的弹出窗口发布一个新的 Pastebin。我遇到的问题是它说“错误的 API 请求,无效的 api_option”
我正在使用的链接: http://pastebin.com/api/api_post.php?api_dev_key=
它表示将 api_option 作为粘贴。我尝试查找其他示例,但还没有运气。大家都遇到过这个问题吗?
I'm trying to post a new Pastebin through a popup window in Javascript. The issues I'm getting is it is saying "Bad API request, invalid api_option"
Link that I'm using:http://pastebin.com/api/api_post.php?api_dev_key=<KEY>&api_paste_name=TITLE&api_option=paste&api_paste_code=SOMETEXT
It says to put api_option as paste. I've tried looking up other examples, but no luck yet. Has everyone ran into this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否有可能需要 POST 数据而不是 GET 数据?
此外,像这样将 API 密钥放在互联网上可能不是最好的主意。
Are you, by any chance, required to POST the data rather than GETting it?
Also, it might not be the best idea ever to put your API key on the internet like this.
您如何向 Pastebin 提交此请求?是通过
POST
还是GET
?我的最佳猜测是,您正在发送GET
请求,而 API 需要POST
。How are you submitting this request to Pastebin? Is it via
POST
orGET
? My best guess is that you're sending aGET
request and the API requires aPOST
.试试这个:
代码的主要问题是将所有内容都放在请求 URL 中,如果它是 GET 请求,那没关系。 PasteBin 的 URL:api/api_post.php 需要 POST 请求(注意名称?),因此您必须在正文中发送它,就像我上面向您展示的那样。
Try this:
The main issue with your code is put everything in your request URL, what is fine if it is a GET request. The URL of PasteBin: api/api_post.php demands a POST request (notice the name?), so you have to send it in the body like I've shown you above.