Answer the question
In order to leave comments, you need to log in
How to parse r.text?
The Requests library is used.
r = session.post(url, data=payload, headers=headers)
print(r)
print(r.text)
When sending a POST request, the response is returned as {"result": [n]}.
n - operation id.
How to get the id from the response and make a new url like www.primer.com/n
Answer the question
In order to leave comments, you need to log in
import json
import random
server_answer = '{"result": [' + str(random.randint(0, 100)) + ']}'
n = json.loads(server_answer)["result"][0]
new_url = f"www.primer.com/{n}"
print(new_url)
server_answer
is a variable with the server's response.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question