iranathan / robloxapi

A python module for using the roblox api
MIT License
33 stars 13 forks source link

rbx.Auth.login() outputs False #3

Closed xDsquare closed 5 years ago

xDsquare commented 5 years ago
import robloxapi

rbx = robloxapi.client()
print(rbx.Auth.login("_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_..."))

I can confirm that the session is valid, but it outputs "False". Maybe they changed something, because I already tried other APIs and it didn't worked neither.

iranathan commented 5 years ago

You should use this

import robloxapi

rbx = robloxapi.client('_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_...')

Auth class might not work. If that does not work check your cookie.

iranathan commented 5 years ago

Oh. I already see what's wrong with the rbx.Auth.Login function Thank you! I will push an update fixing it soon.

xDsquare commented 5 years ago

Alright, thank you man. :)

xDsquare commented 5 years ago

I'm sorry but I need to ask you something offtopic.: Is it possible to pay/send robux to other users without loss with this API?

iranathan commented 5 years ago

Yes, Sorry I have not made docs for most of the package yet.

you can do payouts with:

rbx.Group.groupPayout(groupid, userid, amount)
xDsquare commented 5 years ago

Okay thank you very much. I managed to login with this fix.:

You should use this

import robloxapi

rbx = robloxapi.client('_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_...')

Auth class might not work. If that does not work check your cookie.

rbx.Auth.login() is unfortunately still not working for me.

Do you know if it's possible to transfer funds from my account to group funds?

iranathan commented 5 years ago

Yes, With the buyAsset function in the Asset class