- What do you want to achieve? Keep it simple and clear!
So basically im trying to recreate somethin i saw on yt some years ago. Basically it was a system that detected in game whenever someone sent you a message on the Roblox website. Basically if youre in game and someone sent you a message. A small notificaition would tell you in game that you had gotten a new message.
- What is the issue? Include screenshots / videos if possible!
My only issue is that i only have a small experience(like 10%) with http requests/web services. I found the Message api(
). But whenever i try to send a get request to the request url it gets denied(HTTP 401 (Unauthorized))
Im sure this is some Roblox security stuff put into place so it cant get abused.
I know that its possible because like i said i saw a video showcasing a system like this some years ago. Heres the code i use to send a request btw(Test code):
local Api = game:GetService("HttpService")
local Url = "https://privatemessages.roproxy.com/v1/messages?pageNumber=1&pageSize=10&messageTab=Inbox"
print(Api:GetAsync(Url))
Any help is really appreciated. Small big anything !