Skip to content
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

RESTClient: JSONResponseCursorPaginator does not support field names with dots in cursor_body_path #2459

Open
burnash opened this issue Mar 31, 2025 · 0 comments
Assignees

Comments

@burnash
Copy link
Collaborator

burnash commented Mar 31, 2025

Description

In the JSONResponseCursorPaginator class, the cursor_body_path parameter allows users to specify a path to insert a cursor value into the request body JSON. However, it currently mishandles field names that contain dots (e.g., "user.name"). The implementation splits the cursor_body_path string by dots in the _set_value_at_path method, treating it as a nested path (e.g., {"user": {"name": value}}). This is incorrect when the API expects a single key with a dot in its name (e.g., {"user.name": value}).

Suggested Fix

Update JSONResponseCursorPaginator to treat cursor_body_path as a JSONPath rather than a dot-separated string. Parse the path using the jsonpath_ng library to extract path components:

  • For a nested path like "user.name", interpret it as ["user", "name"].
  • For a single key with a dot like "['user.name']", interpret it as ["user.name"].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Todo
Development

No branches or pull requests

1 participant