pgoapi-go icon indicating copy to clipboard operation
pgoapi-go copied to clipboard

Expose Session expiry time?

Open moddyz opened this issue 9 years ago • 2 comments

I was looking at the code in this repo https://github.com/AHAAAAAAA/PokemonGo-Map and it looks like there each provider has a expiry time that can be queried.
https://github.com/AHAAAAAAA/PokemonGo-Map/blob/master/pogom/pgoapi/pgoapi.py#L178 Upon expiry it looks like the client relogs in.

It looks like it's part of the AuthTicket struct: https://github.com/pkmngo-odi/pogo-protos/blob/master/networking_envelopes.pb.go#L48

Could we possibly expose that on the session object so we know when to login again?

Do let me know if I'm not understanding Session properly :)

moddyz avatar Aug 02 '16 08:08 moddyz

I agree, session should provide an interface for forcefully refreshing tokens and expose functions for checking current expiry times. I'll probably work on this next.

zeevallin avatar Aug 02 '16 17:08 zeevallin

Part of it implemented here: https://github.com/femot/pgoapi-go/blob/master/api/session.go#L67

femot avatar Nov 11 '16 21:11 femot