Vaughan Rouesnel
Vaughan Rouesnel
Seems to be an issue with `node-sunny` and the TemporaryRedirect not being handled.
Thanks. Maybe add a note that if the user receives a TemporaryRedirect error they should make the authUrl the Endpoint mentioned in the error message without the bucket name at...
The `authUrl` should not contain the bucket name. The documentation is wrong. Tiny fix: remove the `[redacted].` part. > Can be fixed by setting the authUrl for the config that's...
Is there a recipe for using `swc` + ES modules?
Any further discussion on this? I much prefer the ability to do early returns with IIFE behavior.
@Suda Cool, just wanted to check it wasn't already possible. I might have a crack at it when I have some time.
So seems like I can get it via: ```js const res = await client.authorize() console.log(res.dispatcher.authenticator) ``` ``` OauthAuthenticator { credentials: ... ``` Is this correct? --- Also, calling `await client.authorize()`...
https://twitter.com/msedgedev/status/1532450628256948224 From slides => 2023
New Microsoft Teams claims to use WebView2 now. Does this mean WebView2 is now running on macOS? > Macs don't benefit quite as much from the new app since, unlike...
The following doesn't work because a trailing slash is appended like so: `/api/links/:id/` ``` map.namespace 'api', (api) -> api.resources 'links', (links) -> links.patch '', 'links#patch' api.resources 'users' ``` Workaround: ```...