syumai

Results 19 comments of syumai

I'll try to implement this in next few weeks.

It will be like the following steps. * producer side - add Wrapper package of Queue class (send / sendBatch) - https://developers.cloudflare.com/queues/reference/javascript-apis/#producer * consumer side (almost same as #45) 1....

@cxjava Thank you for reporting this issue. I cloned your repository and succeeded to deploy. https://cf-pages-demo-cxjava.pages.dev/ If it's a bug of wrangler, please send issue to wrangler's repository. (In that...

@cxjava @kampfmodz I couldn't figure out why the `The 'credentials' field on 'RequestInitializerDict' is not implemented` error occurs, but instead of using http.DefaultClient.Get, you can use `fetch.Client.Do` as follows. ```go...

Maybe the problem occurs around here... https://github.com/golang/go/blob/go1.21.5/src/net/http/roundtrip_js.go#L82-L86

The problem is: * Cloudflare Workers does not support "credentials" field in the fetch function's RequestInit arg option. * Go's (*http.Transport).RoundTrip implicitly adds "credentials" field to RequestInit. - This causes...

Hi, @eliezedeck ! Thank you for your feedback. In conclusion, I believe it is possible. However, the implementation will require one of the following two patterns. 1. write a small...

ご対応ありがとうございます!