-
Notifications
You must be signed in to change notification settings - Fork 47
Open
Description
According to the documentation:
method- if not supplied, will default to 'POST' if there's a body, otherwise 'GET'
This does not work for AWS APIs (e.g. MediaLive /prod/channels/:channelId/start) that expect just an empty POST (i.e. Content-Length: 0 / body: "").
Proposed fix: Test body != null (i.e. treating null/undefined as not present, as in TS type body?: BodyInit | null), instead of boolean-evaluating body, here:
Line 153 in 03f9802
| this.method = method || (body ? 'POST' : 'GET') |
Metadata
Metadata
Assignees
Labels
No labels