Saik

Results 8 comments of Saik

Ironically, after re-reading this I noticed that namespaces are isolated and as such, the DNS resolution would fail. I also adjusted the Services to expose both ports under the same...

> this library is using the golang.org oauth2 client behind the scenes, it will handle the refresh for you when the token has expired. > > "Client returns an HTTP...

I'm just gonna answer myself here. Spotify revokes refresh tokens after a single use, and the OAuth2 library did indeed automatically refresh my users access token.

Have the same issue using this on Delphi 11.3. Can reproduce it easily using the current decfpc/DEC, making a new project and using Twofish. ``` function EncodeStringTwoFish(const s: string): string;...

It can be anything, for example 'Hello world'. I did not want to compromise our (in production use) crypt key. Markus ***@***.***> schrieb am Do., 13. Juli 2023, 12:05: >...

Sorry for the late reply, I've updated the code snippet and verified that the same issue still occurs.

I see, I am trying to upload to different channels automatically. I am now creating different profiles on the machine that will upload videos and setting those profiles depending on...

You can (and very likely should) use contexts to achieve the desired behaviour. What I did was something like this: ```go timeoutCtx, cancel := context.WithDeadline(parentCtx, time.Now().Add(30*time.Second)) artist, err := client.GetArtist(timeoutCtx,...