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
You need to call it in the form .company_search(query, items_per_page: 5, start_index: 5). If you're calling it as .company_search(query, 5, 5) that won't work.
As per the docs.... we should be able to use the following definition:
.company_search(query, items_per_page: nil, start_index: nil)
However, looking at my code, this is the only valid line.
response = client.company_search (keyword)
This function clearly only takes one argument, yet the docs mention that it takes 3....
The text was updated successfully, but these errors were encountered: