-
IssueThis is a bit of an oddball. We are using openid-client to support device code authorization on our smart tv apps. One of our platforms is Tizen 3.x which has a Chromium 47 browser. Chrome 47 falls in a bit of an odd spot for browser features:
What we see now is that on these devices, no body is sent with the authenticatedRequest calls. The simplest fix for this would be to manually .toString() the body before sending the fetch. But wanted to ask your input before throwing out a pull request. How to reproduceGet an old Chrome 47
Thank you in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Stringifying the body prior to sending fetch would be a breaking API change due to it changing the extensibility expecatation that's available. That being said, because of said extensibility you can call stringify on the bodies before sending a fetch out yourself. That's what customFetch is for. |
Beta Was this translation helpful? Give feedback.
Stringifying the body prior to sending fetch would be a breaking API change due to it changing the extensibility expecatation that's available. That being said, because of said extensibility you can call stringify on the bodies before sending a fetch out yourself. That's what customFetch is for.