【问题标题】:How to paste data to pastebin using the api in php?如何使用php中的api将数据粘贴到pastebin?
【发布时间】:2011-05-24 12:31:53
【问题描述】:
<?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) 粘贴它?

【问题讨论】:

  • 不太了解 curl,但请记住,它必须是对 http://pastebin.com/api_public.phpPOST 请求,并设置了变量 paste_code。看起来你没有传递粘贴代码,也没有设置正确的参数。

标签: php curl http-post pastebin


【解决方案1】:

documentation 表示你需要提交一个POST 请求到

http://pastebin.com/api_public.php

并且唯一的强制参数是paste_code,字符串类型的就是你要制作的粘贴。

成功后将返回一个新的pastebin URL。

裸骨示例:

$ch = curl_init("http://pastebin.com/api_public.php");
curl_setopt ($ch, CURLOPT_POST, true);

// A new paste with the string "hello there SO"
curl_setopt ($ch, CURLOPT_POSTFIELDS, "paste_code=hello there SO");

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_NOBODY, 0);

$response = curl_exec($ch);

echo $response; 

在运行时我得到:

> POST http://pastebin.com/api_public.php HTTP/1.1
Host: pastebin.com
Accept: */*
Proxy-Connection: Keep-Alive
Content-Length: 25
Content-Type: application/x-www-form-urlencoded

< HTTP/1.1 200 OK
< Transfer-Encoding: chunked
< Date: Mon, 13 Dec 2010 07:51:12 GMT
< Content-Type: text/plain
< Server: nginx/0.8.52
< Vary: Accept-Encoding
< X-Powered-By: PHP/5.3.4-dev
< Via: 1.1 apac-nc06 (NetCache NetApp/6.0.6)
< 
http://pastebin.com/Lc7kAw8Z* Closing connection #0

显然响应的 URL 为 http://pastebin.com/Lc7kAw8Z

访问它,你会看到一个包含hello there SO的新粘贴

【讨论】:

    【解决方案2】:

    仅供查看此“2013 年后”的其他人参考,api_public.php POST 已停止。

    【讨论】:

      【解决方案3】:

      对于那些通过 seach 偶然发现这个线程的人,这里有一个在 2013 年有效的代码:

      <?php
      $data = 'Hello World!';
      
      $apiKey = 'xxxxxxx'; // get it from pastebin.com
      
      $postData = array(
          'api_dev_key'           => $apiKey,             // your dev key
          'api_option'            => 'paste',             // action to perform
          'api_paste_code'        => utf8_decode($data),  // the paste text
          'api_paste_private'     => '1',                 // 0=public 1=unlisted 2=private
          'api_paste_expire_date' => '1D',                // paste expires in 1 day
      );
      
      $ch = curl_init('http://pastebin.com/api/api_post.php');
      curl_setopt_array($ch, array(
          CURLOPT_POST => 1,
          CURLOPT_POSTFIELDS => http_build_query($postData),
          CURLOPT_RETURNTRANSFER  => 1,
      ));
      $re = curl_exec($ch);
      curl_close($ch);
      
      $pasteId = end(explode('/', $re));
      echo "Created new paste.\r\n Link:\t{$re}\r\n Raw:\t" . sprintf('http://pastebin.com/raw.php?i=%s', $pasteId) . "\r\n";
      

      【讨论】:

        猜你喜欢
        • 2012-10-14
        • 2013-02-25
        • 2014-08-11
        • 1970-01-01
        • 2014-03-15
        • 2020-11-08
        • 2010-09-24
        • 2012-10-24
        • 1970-01-01
        相关资源
        最近更新 更多