Add functionality to change Raw Body Data before sending.#276
Merged
AidasK merged 3 commits intoflowjs:masterfrom Dec 20, 2019
Merged
Add functionality to change Raw Body Data before sending.#276AidasK merged 3 commits intoflowjs:masterfrom
AidasK merged 3 commits intoflowjs:masterfrom
Conversation
Collaborator
Author
|
This PR will fix. #170 |
Member
|
I think I can merge this, though it would be great that you could include GCS usage example with this option too and add this param in the docs |
Collaborator
Author
|
@AidasK However, I am not sure what to include in the documentation. I mean, there is no example for other functionalities of the library. So, maybe keep it uniform and include explanation only without example... 🤷♂ |
Member
|
Add param and explanation to the docs and link to this issue #276 |
Collaborator
Author
|
@AidasK |
Member
|
Thanks for your time, merged |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add functionality to change Raw Body Data before sending.
This is particularly helpful when using Upload with Google Storage and many other platforms where we have to upload multipart related form data. (i.e. Different parts in the same request).
Example:
Google Cloud Storage expects data body to be in this format.
[BOUNDARY] is the Content Boundary which can be set using Custom Header function.
[FILE_DATA] is actually the chunk body in this case. (which is a blob).
If this is feasible and merged, then I'll change the Documentation...