-
Notifications
You must be signed in to change notification settings - Fork 533
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
[Text-to-Speech] failed with combine of special characters, e.g Spanish + ";" #602
Comments
@germanattanasio moving to a POST seems like a good first attempt at a fix. I can look at this tomorrow. |
great |
@germanattanasio I took a look, and converting to a POST requires changing a number of tests accordingly. Using URL encoding may be better, but then we break tests for other reasons and I don't think we want to double URL encode the string. Also, the okhttp library may be URL encoding the string already, but I don't know it well enough and lack the time to work through it. I'm really sorry; I just don't have the cycles to handle this right now. |
I'm going to assign this @blakesteve |
@germanattanasio @blakesteve any update here? |
Reopening due to reversion, see #635 |
With following code:
Get error:
Change second line code to:
It works as expected.
Because in Java-SDK, we use HTTP GET to send request, thus need URL-encoded, while it seems not working fine while in Spanish.
Suggest either improve URL-encoder part, or change to use POST method.
The text was updated successfully, but these errors were encountered: