Pastebin [HTTP 403 (Forbidden)]

So today I started to get this error. Possible for HttpService to be down?

Code:

spawn(function()
	while task.wait(1) do
		local INFO = nil
		local success, errorr = pcall(function()
			INFO = Pastebin.RequestPermission()
		end)
		if success then
			if INFO ~= nil then
				_G.Permissions = INFO
			end
		elseif not success then
			warn("❌ [Main]: Failed to get permissions from pastebin.", errorr)
		end
	end
end)

Module:

function Pastebin.RequestPermission()
	return HttpService:JSONDecode(game:GetService("HttpService"):GetAsync(URL))
end

HTTP 403 means the request was blocked because it’s unauthorized/server denied it

These errors started to happen only today. Maybe something is wrong with roblox?

It’s not on Roblox’s end. From what I gathered online, getting an HTTP 403 from pastebin means either the IP the request was sent from was blocked, or the link itself is private

Here’s another forum post I found about this:

I switched up to GitHub instead, thanks for the help though!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.