diff --git a/src/phoenix_technologies/smd/server.py b/src/phoenix_technologies/smd/server.py index d04f544..d1cac9c 100644 --- a/src/phoenix_technologies/smd/server.py +++ b/src/phoenix_technologies/smd/server.py @@ -35,7 +35,7 @@ async def smd_detail_article(article_id): payload = {"filters": [], "pagination": {"pageSize": 1, "currentPage": 1}} async with aiohttp.ClientSession() as session: - async with session.get(url, headers=headers, payload=payload) as response: + async with session.post(url, headers=headers, json=payload) as response: if response.status == 200: return await response.json() # JSON asynchron lesen else: