1

我正在做一个简单的帖子,使用 GM_xmlhttpRequest 将一些文本发布到 pastebin。这是我的代码

GM_xmlhttpRequest({
      method: "POST",
      url: "http://pastebin.com/post.php",
      data: "api_dev_key=5c3***********************073a&api_option=paste&api_paste_code="+encodeURI(photo_url)+"&api_user_key=5******************************f&api_paste_name=cornered&api_paste_private=2&api_paste_expire_date=1W",
      headers: {
        "Content-Type": "application/x-www-form-urlencoded",              
      },
      onload: function(response) {
        alert("posted " + response);
      }
    });

我在脚本中没有得到任何回应。为了检查 post 请求本身是否有效,我使用了http://requestmaker.com/它显示 POST 请求正在返回 302 响应

发送的请求标头:

POST /post.php HTTP/1.1
Host: pastebin.com
Accept: */*
Content-Type: application/x-www-form-urlencoded
Content-Length: 152

响应标头:

HTTP/1.1 302 Moved Temporarily
Date: Wed, 10 Dec 2014 15:27:20 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: __cfduid=d61fd0544ec1b0c284ba908367557bc7f1418225240; expires=Thu, 10-Dec-    15 15:27:20 GMT; path=/; domain=.pastebin.com; HttpOnly
X-Powered-By: PHP/5.5.5
Set-Cookie: cookie_key=1; expires=Wed, 07-Jan-2015 15:27:20 GMT; Max-Age=2419200;     path=/; domain=.pastebin.com
Set-Cookie: realuser=1; expires=Thu, 11-Dec-2014 15:27:20 GMT; Max-Age=86400; path=/
location: /index.php?e=2
Vary: Accept-Encoding
Server: cloudflare-nginx
CF-RAY: 196a7749d5c713e9-LAX
4

1 回答 1

1

将您的请求发送到http://pastebin.com/api/api_post.php而不是http://pastebin.com/post.php.

于 2015-01-01T20:51:17.120 回答