[hitsquad] In-Game PM Notifications and PM Sending

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.

Nice work, I’ve also thought about making something like this as an online service but then I had the problem of people not trusting it because they give you their password which you can’t hash. This would work very well with an OpenAuth system in ROBLOX.

I’ve had a sort of a PM system in PHP done around December last year. I accidentally messed it up then and you can see the result below >.< (It was triggered from a web(post-data with a secret ‘unique’ key) request, it would be usable with the HTTP-service)

[quote] Nice work, I’ve also thought about making something like this as an online service but then I had the problem of people not trusting it because they give you their password which you can’t hash. This would work very well with an OpenAuth system in ROBLOX.

I’ve had a sort of a PM system in PHP done around December last year. I accidentally messed it up then and you can see the result below >.< (It was triggered from a web(post-data with a secret ‘unique’ key) request, it would be usable with the HTTP-service)

[spoiler]

[/spoiler] [/quote]

Yeah, an Oauth system would be great. I had some issues getting mine to work properly too. :stuck_out_tongue:

Do you ever plan to release the ROBLOX Code and PHP Code?

I would gladly slap this onto my Services VPS and use it! :o

[quote] Do you ever plan to release the ROBLOX Code and PHP Code?

I would gladly slap this onto my Services VPS and use it! :o [/quote]

PHP Code: [PHP] Roblox In-Game PMs - Pastebin.com

Example place file: https://drive.google.com/file/d/0ByfjSoa35tiuNDhzaU1LcDZpSFU/edit?usp=sharing

Enjoy. Constructive criticism is appreciated. :slight_smile: