Yannik Sembritzki
Yannik Sembritzki
Thanks, that looks great!
@gcobb321 Is this still working for you? For me, I'm getting an `pyicloud.exceptions.PyiCloudAPIResponseException: (501)` when trying to query the friend endpoint.
@gcobb321 At first I thought this was due to 2fa, but after fixing that, it still does not work: ``` api.requires_2fa: False api.requires_2sa: False api.is_trusted_session: True ``` ``` Traceback (most...
@gcobb321 ah, I see. Thanks for the quick reply!
@fopina For what it's worth, I'd very much appreciate a PR that gets this working again! :)
@remram44 I get no errors at all, unfortunately. Printing the `msg` in `_recv_confirm()` like this: ``` def _recv_confirm(self): # read scp response msg = b'' try: msg = self.channel.recv(512) print(msg)...
openssh scp indeed has an 0 exit code. (even though the error message is printed) Calling `scp.channel.recv_stderr()` where `scp` is a `SCPClient` results in an `AttributeError: 'NoneType' object has no...
@remram44 the same (TimeoutError) occurs when calling `self.channel.recv(512)` instead of `scp.channel.recv_stderr(512)`. I have tried to sleep for a few seconds before calling these to make sure the other side had...
There is a PR for this here: https://github.com/microg/GmsCore/pull/2194
@antonioCoco thank you, that's great!