如何使用php中的api将数据粘贴到pastebin?
<?php
/* gets the data from a URL */
function get_data($url)
{
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$paste_data=""; if(isset($_POST["paste_code"])) { $paste_data = $_POST["paste_code"]; }
echo $paste_data;
$returned_content = get_data('http://pastebin.com/api_public.php/paste_code(paste_data)');
echo $returned_content;
?>
这是我的 php 代码。其中 $paste_data 包含要粘贴到新页面中的数据。如何使用函数paste_code(String)粘贴它?
<?php
/* gets the data from a URL */
function get_data($url)
{
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$paste_data=""; if(isset($_POST["paste_code"])) { $paste_data = $_POST["paste_code"]; }
echo $paste_data;
$returned_content = get_data('http://pastebin.com/api_public.php/paste_code(paste_data)');
echo $returned_content;
?>
This is my php code . where $paste_data contains the data to be pasted in a new page . How do I paste it using the function paste_code(String) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
文档 表示您需要提交一个
POST
请求,并且唯一强制参数是
paste_code
,字符串类型是您要制作的粘贴。成功后,将返回新的
pastebin
URL。简单的例子:
运行时我得到:
显然,响应的 URL 为 http://pastebin.com/Lc7kAw8Z
访问它,你会看到一个新的粘贴,其中包含
hello there SO
The documentation says that you need to submit a
POST
request toand the only mandatory parameter is
paste_code
, of type string is the paste that you want to make.On success a new
pastebin
URL will be returned.Bare bone example:
and on running I get:
Clearly the response has the URL http://pastebin.com/Lc7kAw8Z
Visit it and you'll see a new paste containing
hello there SO
供其他查看此“2013 年后”的人参考,api_public.php POST 已停止。
FYI for others looking at this "post 2013", the api_public.php POST has been discontinued.
对于那些通过 seach 偶然发现这个线程的人,这里有一个在 2013 年运行的代码:
For those who stumple upon this thread via seach, here is a code that works in 2013: