Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set includeOriginalStrings to false #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

shiqi
Copy link

@shiqi shiqi commented Dec 6, 2017

includeOriginalStrings by default will be set to true in the rest api def (although the doc didn't mention the default value)
so it will never be set to false unless we set it explicitly here to false

includeOriginalStrings by default will be set to true 
so it will never be set to false unless we set it explicitly here to false
@@ -55,6 +55,8 @@ func (request FileDownloadRequest) GetQuery() url.Values {

if request.IncludeOriginal {
query.Set("includeOriginalStrings", "true")
}else{
query.Set("includeOriginalStrings", "false")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure that we should explicit tell false. My expectation - if the parameter is not provided then its value false.
I want to talk with someone in File API team to confirm my assumption.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did some test with curl (with includeOriginalStrings not set) and it seems to me (maybe it is somewhere hidden in my project settings that I missed) that the default value is true here. but getting clarification from the team is definitely a good idea, maybe they can update the official doc for that too, thanks!

@shiqi
Copy link
Author

shiqi commented Jan 18, 2018

any updates on this? 🙇

@cswinter
Copy link

cswinter commented Jun 6, 2018

i ran into this issue as well when rewriting python code, current implementation is definitely broken

@carllindberg
Copy link

Still an issue. The server default appears to be includeOriginalStrings=true , which agreed is counterintuitive but appears to be the way things are. With this fix applied the tool worked as I needed.

I don't think the command line client allows setting this parameter yet, either, but if that is added perhaps support parameter values of true/false/default, in case the server behavior changes, and send the parameter in case of the first two.

@developerJuiceLozzoc
Copy link

developerJuiceLozzoc commented Jun 6, 2022

lol, cmon, lets get some injectable behavior here lol. This PR creates some configuration.

@carllindberg
Copy link

Yeah, it'd probably be best to allow "ServerDefault", "true", and "false" settings, so if the user supplied a command-line flag, it would always send true/false rather than having the client library assume what the server's behavior is, with "ServerDefault" not adding the parameter. But, the current server behavior is "true", so there absolutely has to be a way to pass false.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants