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
Currently, the Fake-UB API is very lenient and the data that is returned is very minimal. Furthermore, it will return any extra parameters we send as data, which works contrary to how Ubersmith works.
While Ubersmith will accept any extra parameters sent to it when retrieving this data, only the data supported by the API will be returned.
Example problem:
Calling a client.add with unsupported arguments like: x='foo', y='bar' will result in those parameters being returned in a subsequent client.get.
This should not happen. We should be lenient in accepting, but only show the supported parameters.
This should be done for all implemented calls.
The text was updated successfully, but these errors were encountered:
Currently, the Fake-UB API is very lenient and the data that is returned is very minimal. Furthermore, it will return any extra parameters we send as data, which works contrary to how Ubersmith works.
While Ubersmith will accept any extra parameters sent to it when retrieving this data, only the data supported by the API will be returned.
Example problem:
Calling a
client.add
with unsupported arguments like:x='foo', y='bar'
will result in those parameters being returned in a subsequentclient.get
.This should not happen. We should be lenient in accepting, but only show the supported parameters.
This should be done for all implemented calls.
The text was updated successfully, but these errors were encountered: