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
The WordSearchAsync method sends an HTTP request with the following URL: https://api.assemblyai.com/v2/transcript/fb65d5a9-caed-477d-96bf-ee90337c7c5a/word-search?words=foo&words=bar&words=foo%20bar&words=42
But it should be: https://api.assemblyai.com/v2/transcript/fb65d5a9-caed-477d-96bf-ee90337c7c5a/word-search?words=foo,bar,foo%20bar,42
A comma separated string
The text was updated successfully, but these errors were encountered:
When running the following code:
The
WordSearchAsync
method sends an HTTP request with the following URL:https://api.assemblyai.com/v2/transcript/fb65d5a9-caed-477d-96bf-ee90337c7c5a/word-search?words=foo&words=bar&words=foo%20bar&words=42
But it should be:
https://api.assemblyai.com/v2/transcript/fb65d5a9-caed-477d-96bf-ee90337c7c5a/word-search?words=foo,bar,foo%20bar,42
A comma separated string
The text was updated successfully, but these errors were encountered: