1

请注意,这是 Roblox 的 lua 版本。我想将表格上传到 Pastebin。这是我为 Pastebin 准备的。

h = game:GetService'HttpService'
JSON = h:JSONEncode(ImgScript) --ImgScript is a table formatted like {{x,y,z}, {x,y,z}, {x,y,z}, etc.}
h:PostAsync('http://pastebin.com/api/api_post.php','&api_dev_key=CensoredDevKey&api_option=paste&api_paste_code=' .. JSON)

这不起作用,我似乎无法弄清楚为什么。

编辑:我也试过这个,它没有用。

h = game:GetService'HttpService'
api_params = {
    ["api_dev_key"] = "CensoredDevKey",
    ["api_option"] = "paste",
    ["api_paste_code"] = ImgScript
}
api_params = h:JSONEncode(api_params)
h:PostAsync('http://www.pastebin.com/api/api_post.php', api_params)

编辑:我也试过这个,但没有奏效:

h = game:GetService'HttpService'
JSON = h:JSONEncode(ImgScript) --ImgScript is a table formatted like {{x,y,z}, {x,y,z}, {x,y,z}, etc.}
data = h:UrlEncode('&api_dev_key=CensoredDevKey&api_option=paste&api_paste_code=' .. JSON)
h:PostAsync('http://pastebin.com/api/api_post.php', data)
4

2 回答 2

3

尝试以下操作:

h = game:GetService'HttpService'
pasteData = h:UrlEncode( h:JSONEncode(ImgScript) )
h:PostAsync(
    'http://pastebin.com/api/api_post.php',
    'api_dev_key=CensoredDevKey&api_option=paste&api_paste_code=' .. pasteData,
    2
)

最后一个参数,2 指定要发送的数据是Application/Url-Encoded.

我认为这应该可以解决问题。如果没有,请在此处告知。

PS:您在哪里收到此 POST 请求的结果?

于 2015-09-24T06:26:08.073 回答
0

所以我已经完成了代码,但遗憾的是,Roblox 将PostAsync大小限制为 256 字节,因此任何大于该大小的上传都将被 GZIPed(最大 1024kb),Pastebin 不知道如何处理。

无论如何,我在这里发布了代码: http ://www.roblox.com/Pastebin-Upload-item?id=302297532

这是:

--Created by GShocked. PM me if you have questions!

h = game:GetService'HttpService'
api_dev_key = '' --Your Pastebin developer key goes here. Log in first, and then you can find it at pastebin.com/api
api_paste_code = '' --The content of your new paste
api_paste_private = '1' --0 public; 1 unlisted; 2 private
api_paste_name = '' --Name your new paste
api_paste_expire_date = 'N' --N for never expire, 10M for 10 minutes, etc.
api_paste_format = 'lua' --The syntax highlighting
api_user_key = '' --This is generated using the login info
api_paste_name = h:UrlEncode(api_paste_name)
api_paste_code = h:UrlEncode(api_paste_code)
username = '' --Your Pastebin username goes here
password = '' --Your Pastebin password goes here

api_user_key = h:PostAsync(
    'http://pastebin.com/api/api_login.php',
    'api_dev_key=' .. api_dev_key .. '&api_user_name=' .. username .. '&api_user_password=' .. password,
    2
)
print(api_user_key) --DON'T DELETE THIS! IT IS ESSENTIAL FOR THE USER KEY TO BE GENERATED!
h:PostAsync(
    'http://pastebin.com/api/api_post.php',
    'api_option=paste&api_user_key=' .. api_user_key .. '&api_paste_private=' .. api_paste_private .. '&api_paste_name=' .. api_paste_name .. '&api_paste_expire_date=' .. api_paste_expire_date .. '&api_paste_format=' .. api_paste_format .. '&api_dev_key=' .. api_dev_key .. '&api_paste_code=' .. api_paste_code,
    2
)
于 2015-10-25T18:37:52.293 回答