ComputerCraft

ComputerCraft

21M Downloads

Pastebin GET Command Broken

GoobyCorp opened this issue ยท 2 comments

commented

Pastebin updated their website recently and raw pastes aren't retrieved using HTTP GET args in the url like raw?i=(paste id), it's been changed to a virtual directory like this /raw/(paste id)

The problem is here:
/rom/programs/http/pastebin @ line 24

Fix:

"http://pastebin.com/raw.php?i="..textutils.urlEncode( paste )

change to:

"http://pastebin.com/raw/"..textutils.urlEncode( paste )
commented

Fixed for pr6. Thanks

commented

No prob. Apparently I have to contact pastebin on the same issue...