[Fixed]-Django ID based dynamic URL with base64

1👍

Why would you like to have base64 encoded ids, pretty bad choice for URL string as it has signs that aren’t URL friendly

You should extend your object with extra field that contains for instance random generated slug or UUID and have it as parameter in URL instead of id

then you would query in your view by that field

Leave a comment