Flask
@app.route('/api/v1/users/<user_id>')
def handler(user_id):
# route handler
# use user_id
Express
app.get('/api/v1/users/:userId', (req, res) => {
// route handler
const userId = req.params.userId;
});
We're a place where coders share, stay up-to-date and grow their careers.
For further actions, you may consider blocking this person and/or reporting abuse
Cristian Fernando -
Andrew Baisden -
Kevin Farrugia -
Melbite blogging Platform -
Once suspended, victoromondi1997 will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, victoromondi1997 will be able to comment and publish posts again.
Once unpublished, all posts by victoromondi1997 will become hidden and only accessible to themselves.
If victoromondi1997 is not suspended, they can still re-publish their posts from their dashboard.
Discussion (0)