You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation: we have a longtext field within a form that a user can paste a large body of text into, and this body of text is POST'd as is to the endpoint for processing
However, we want to be able to "escape" all the special characters (especially the " that might be scattered throughout a large body of text) so that the JSON is not broken in transport.
This google search was disappointingly vague about how to do this search sample
Ideally there would be a way to just write some logic within the executeQuery action, so this current RequestBody:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Current implementation: we have a
longtext
field within a form that a user can paste a large body of text into, and this body of text is POST'd as is to the endpoint for processingHowever, we want to be able to "escape" all the special characters (especially the
"
that might be scattered throughout a large body of text) so that the JSON is not broken in transport.This google search was disappointingly vague about how to do this search sample
Ideally there would be a way to just write some logic within the executeQuery action, so this current RequestBody:
would look something like this:
However, I can't be too choosey, so I would appreciate any pointers on the correct way to do this!
Beta Was this translation helpful? Give feedback.
All reactions