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
To facilitate a drop-in replacement for our existing code without changing our server side code, we'd like to have a way to customise the getSignedURL functionality so that we have the opportunity to take our existing response schema and map it to the signature response data the plugin requires to send the file to S3.
This could be coded in a similar way to the signingURL property.
getSignedURL: (signUrl) => $.post('signUrl').then((response) => ({
signature: response.someotherthing, // as a simple example
});
Required for non-cookie based authentication workflows.
The text was updated successfully, but these errors were encountered:
To facilitate a drop-in replacement for our existing code without changing our server side code, we'd like to have a way to customise the getSignedURL functionality so that we have the opportunity to take our existing response schema and map it to the signature response data the plugin requires to send the file to S3.
This could be coded in a similar way to the
signingURL
property.Required for non-cookie based authentication workflows.
The text was updated successfully, but these errors were encountered: