[hitsquad] In-Game PM Notifications and PM Sending

Thanks. :slight_smile: TRA.netne.net? I’ve just checked and it loaded for me? :)[/quote]

http://tra.netne.net It stays loading at a white page for 3-4 minutes then says it was not found, I tried doing it again with google’s DNS since that sometimes fixes this kind of issue but it still doesn’t.

Thanks. :slight_smile: TRA.netne.net? I’ve just checked and it loaded for me? :)[/quote]

Thanks. :slight_smile: TRA.netne.net? I’ve just checked and it loaded for me? :)[/quote]

http://tra.netne.net It stays loading at a white page for 3-4 minutes then says it was not found, I tried doing it again with google’s DNS since that sometimes fixes this kind of issue but it still doesn’t.[/quote]

That’s interesting. Does netne.net load for you? What about doing a tracert to tra.netne.net?

Interesting, the netne.net its self does not load either, I went on isitup.org checked if its up or not and it does say its up.

Hmm, weird. Is it blocked by your firewall or anti-virus?

Nope don’t think so, turned them off cleared cache then I tried the site and still not loading.

What happens when you try to do a tracert? Could you post a screenshot of the result?

I’m interested in seeing how you are logging into your account with PHP. Would you mind explaining it or releasing the source code?

It’s pretty easy actually;

POST https://m.roblox.com/Login HTTP/1.1
Host: m.roblox.com
Content-Length: 29
Content-Type: application/json

{"username":"","password":""}

Just hook into that in the PHP code and look for the .ROBLOSECURITY cookie.

It’s pretty easy actually;

POST https://m.roblox.com/Login HTTP/1.1
Host: m.roblox.com
Content-Length: 29
Content-Type: application/json

{"username":"","password":""}

Just hook into that in the PHP code and look for the .ROBLOSECURITY cookie.[/quote]

Yep, that’s what I’m doing. The cookie is valid globally across the site so subequent requests sent to roblox.com (instead of the mobile site) will still use my .ROBLOSECURITY cookie.

I’m currently in Ohio for a trip I’m in a hotel I tried to access your site and it works.

Any possibility you’d release the exact code (with certain information omitted of course) you use to do just the login with the cookies.

Sure thing.

Here is a link to the functions themselves, and here’s an example implementation. Be aware that the third parameter taken by the cURL function should be the path to a file that is not contained within the public_html directory, or you should make sure that it is otherwise protected. If not, you’ll risk having you .ROBLOSECURITY cookie stolen. In my case I’ve used .htaccess to deny access to my cookie file.

Just a quick update. If multiple new messages are returned by the API, they won’t display while a reply GUI is open.

This is pretty sweet, I’d like to see it implemented one day!

Updated title to bring attention to the hitsquad.

Thanks, yeah. Integration by roblox would be pretty cool.

This made me wanna improve my PHP knowledge.

Very nice job, I very appreciate it.

[quote] This made me wanna improve my PHP knowledge.

Very nice job, I very appreciate it. [/quote]

You should improve your Python, Ruby, or Perl knowledge, not PHP. :wink:

[quote] This made me wanna improve my PHP knowledge.

Very nice job, I very appreciate it. [/quote]

You should improve your Python, Ruby, or Perl knowledge, not PHP. ;)[/quote]

Not if he wants a job. :wink: PHP and ASP.Net domniate the other languages in the number of companies that use them.

I can release the code for the first version (Without the reply functionality), if anybody is interested as that code is relatively tidy.