bascially i am making a route in which i have connect my api of whatapp when i send a number in my json response thought software this route should send me a whatapp message on that number
JavaScript
x
8
1
@app.route('/v1.1/userRegistor', methods=['POST','GET'])
2
def get_user():
3
data = request.get_json()
4
numbers=data['numbers']
5
api_url = ('https://app.simplywhatsapp.com/api/send.php?number=numbers&type=text&message=test%20message&instance_id=634CF8BECCB26&access_token=78495efca3672167f9ed88cb93acd2e1')
6
r = requests.get(api_url)
7
return r.json()
8
this is my request body: {
JavaScript
1
2
1
"numbers":"923142985338"
2
}
Advertisement
Answer
You aren’t formatting your API request URL. The variables can’t be passed directly in the string, as they can’t be distinguished from words. You need to use a format string.
JavaScript
1
2
1
api_url = f'https://app.simplywhatsapp.com/api/send.php?number={numbers}&type={text}&message=test%20message&instance_id=634CF8BECCB26&access_token=78495efca3672167f9ed88cb93acd2e1'
2
Read more about it here: https://www.pythoncheatsheet.org/cheatsheet/string-formatting