-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Labels
enhancementRequest for a new feature that's not currently supportedRequest for a new feature that's not currently supportedv2Ideas, requests and plans for v2 of the SDK which will incorporate major changes and fixesIdeas, requests and plans for v2 of the SDK which will incorporate major changes and fixes
Description
Describe the solution you'd like
RequestInfo currently only exposes headers. Add the query string from the original HTTP request:
export interface RequestInfo {
headers: IsomorphicHeaders;
queryString?: string; // e.g., "foo=bar&debug=true"
}
The transports already receive the full request object in handleRequest() - just need to extract and pass along the query portion.
fredericbarthelet
Metadata
Metadata
Assignees
Labels
enhancementRequest for a new feature that's not currently supportedRequest for a new feature that's not currently supportedv2Ideas, requests and plans for v2 of the SDK which will incorporate major changes and fixesIdeas, requests and plans for v2 of the SDK which will incorporate major changes and fixes