-
Notifications
You must be signed in to change notification settings - Fork 319
[http-spec] Add test cases for bytes with non application json content type #8941
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
You can try these changes here
|
| op cose( | ||
| @header | ||
| contentType: "application/cose", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is currently an issue on the server side for request, input coseData, but always get undefined.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/microsoft/typespec/blob/main/packages/spector/src/server/server.ts#L71
this.app.use(
bodyParser.raw({
type: ["application/octet-stream", "image/png", "application/jsonl"],
limit: "10mb",
verify: rawBinaryBodySaver,
}),
);
this.app.use(multer().any() as any);
commit: |
fixes #8405