Tom Dryer

Results 145 comments of Tom Dryer

Sounds like a useful feature! This seems like something that should be implemented in the UI layer rather than the library. The key for a user should be the user...

Extending the `User` class would be easy, but I think these client-side nicknames belong in the UI code rather than the library. I'd suggest adding a `get_user_name` function to in...

As far as I know the global scope is the only one that works. Where did you find `https://www.googleapis.com/auth/chat`? I was able to log in using it, but the first...

Thanks! I got the first two requests working using the method you describe and setting an `Authorization: Bearer` header: ``` https://talkgadget.google.com/talkgadget/_/extension-start https://talkgadget.google.com/u/0/talkgadget/_/chat ``` But the third one fails with `401...

@j16sdiz Have you already tried this approach?

Yeah, the API that the apps use is a bit different. Android uses GCM for pushing messages and iOS uses APNS. It should be possible to poll using `Client.getconversation`, but...

Definitely possible. The API supports specifying an existing image ID to use, but we don't have a method for retrieving previously uploaded images yet.

I'm not sure it's possible to fix this in hangups due to the way the UI works. One alternative is adding mouse support (#32) so clicking the link invokes a...

> I'm assuming this lag happens because hangups doesn't want to show the message until it was successfully received by the server. Yep, that's exactly what's happening.

hangups supports proxying through the `HTTP_PROXY` environment variable.