Context:
This works:
JavaScript
x
11
11
1
import http.client
2
conn = http.client.HTTPSConnection("something-api.com")
3
payload = 'grant_type=client_credentials&client_id=123-123-123&client_secret=123123&scope=something something'
4
headers = {
5
'Content-Type': 'application/x-www-form-urlencoded'
6
}
7
conn.request("POST", "/connect/token", payload, headers)
8
res = conn.getresponse()
9
data = res.read()
10
print(data.decode("utf-8"))
11
This does not. It returns { 'error':'invalid_client' }
.
JavaScript
1
28
28
1
async def get_token(self):
2
params = {
3
"grant_type": "client_credentials",
4
"client_id": "123-123-123",
5
"client_secret": "123123",
6
"scope": "something something"
7
}
8
9
headers = {
10
"Content-Type": "application/x-www-form-urlencoded",
11
}
12
13
async with aiohttp.ClientSession() as session:
14
async with await session.post(
15
url="https://something-api.com/connect/token",
16
params=params,
17
headers=headers) as response:
18
return await response.json()
19
20
async def authorise(self):
21
response = await self.get_token()
22
# Returns { 'error':'invalid_client' }
23
return response
24
25
# -- Just so you can see how it's called:
26
authorise_task: tasks.Task = asyncio.create_task(example.authorise())
27
access_token = await authorise_task
28
Question:
I cannot understand what the difference is between them. Any ideas what might be happening?
I’ve also tried:
- Adding headers to the
ClientSession(headers=headers)
too. - Using the URL and removing params
Other notes:
- aiohttp docs here: https://docs.aiohttp.org/en/stable/client_reference.html
- aiohttp version:
3.7.4.post0
Advertisement
Answer
in docs:
for GET query
JavaScript
1
12
12
1
params –
2
3
Mapping, iterable of tuple of key/value pairs or string to be sent as parameters in the query string of the new request. Ignored for subsequent redirected requests (optional)
4
5
Allowed values are:
6
7
collections.abc.Mapping e.g. dict, aiohttp.MultiDict or aiohttp.MultiDictProxy
8
9
collections.abc.Iterable e.g. tuple or list
10
11
str with preferably url-encoded content (Warning: content will not be encoded by aiohttp)
12
for POST body
JavaScript
1
2
1
data – The data to send in the body of the request. This can be a FormData object or anything that can be passed into FormData, e.g. a dictionary, bytes, or file-like object. (optional)
2
JavaScript
1
2
1
json – Any json compatible python object (optional). json and data parameters could not be used at the same time.
2