Damir Jelić
Damir Jelić
There is no support to use the `Authorization` header for now, but putting the access token into the query string should work as usual. Yes, all URLs should already be...
No, the part that gets into the URL after the question mark separator. https://en.wikipedia.org/wiki/Query_string
You don't need to instantiate a store before passing it to the client, just pass the class. Also you might want to change folders, it seems that your python interpreter...
You installed [olm](https://pypi.org/project/olm/) instead of [python-olm](https://pypi.org/project/python-olm/).
To load an existing account you need to replicate what the `login()` method does. Under the assumption that the store path is already set, you just need to set the...
This isn't supported yet.
It's doubtful that the login method is broken, I don't think that there have been any major changes to it, the tests don't fail for it and I just checked...
Sorry, which list are you talking about?
Checking for a room is there to check if the room is encrypted. The room object on the other hand will only be created when we receive the next sync...
What we're interested in is the `m.room.encrypted` event, which you don't get on join. So just creating an empty room object wouldn't solve the problem. You could fetch that event...