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
Thank you very much for this library!
Adding Query String Params to the request results in a "bad request" error, guild_memember = await discord.request(f"/guilds/{guild_id}/members", method="GET", data={'limit': 100,})
The text was updated successfully, but these errors were encountered:
Thank you very much for this library! Adding Query String Params to the request results in a "bad request" error, guild_memember = await discord.request(f"/guilds/{guild_id}/members", method="GET", data={'limit': 100,})
you get an error because limit is a query string parameter which should be used as follows:
Thank you very much for this library!
Adding Query String Params to the request results in a "bad request" error,
guild_memember = await discord.request(f"/guilds/{guild_id}/members", method="GET", data={'limit': 100,})
The text was updated successfully, but these errors were encountered: