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

Moving query params to address issue with expand=target stacking to the url #30

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions snyk_tags/lib/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@ def v3_client(self):
@backoff.on_exception(backoff.expo, httpx.HTTPError, **backoff_params)
def org_projects(self, org_id: str):
with self.v3_client() as c:
next = f"/orgs/{org_id}/projects"
params = {"expand": "target", "limit": 100}
next = f"/orgs/{org_id}/projects?expand=target&limit=100"
while next:
resp = c.get(next, params=params)
resp = c.get(next)
resp.raise_for_status()
assert resp.status_code == 200
body = resp.json()
Expand Down
Loading