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
{{ message }}
This repository has been archived by the owner on May 15, 2023. It is now read-only.
Since today morning, I've been getting Shareplum HTTP Post Failed : 500 Server Error: for a list which has been working fine so far.
Upon further analysis, when a filter query is passed with a date parameter it fails and other filters seems to work.
e.g. (the below query fails - 500 server error)
query = {'Where': [('Eq', 'Raised On Date', datetime.datetime(2022,1,10))]}
sp_data = sp_list.GetListItems(fields=fields, query=query, row_limit=2)
but this one succeeds
query = {'Where': [('Contains', 'Title', 'abc')]}
sp_data = sp_list.GetListItems(fields=fields, query=query, row_limit=2)
Anyone have any idea why this behaves in this manner?
The text was updated successfully, but these errors were encountered:
Was this resolved ? I'm having the same issue, the script is working fine for weeks and all of the sudden 500 Server Error showed up.
I tried with different credentials, changed queries, even tried removing all queries and row limits, nothing seems to be working.
Anyone figured this out yet?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Since today morning, I've been getting Shareplum HTTP Post Failed : 500 Server Error: for a list which has been working fine so far.
Upon further analysis, when a filter query is passed with a date parameter it fails and other filters seems to work.
e.g. (the below query fails - 500 server error)
query = {'Where': [('Eq', 'Raised On Date', datetime.datetime(2022,1,10))]}
sp_data = sp_list.GetListItems(fields=fields, query=query, row_limit=2)
but this one succeeds
query = {'Where': [('Contains', 'Title', 'abc')]}
sp_data = sp_list.GetListItems(fields=fields, query=query, row_limit=2)
Anyone have any idea why this behaves in this manner?
The text was updated successfully, but these errors were encountered: