django-unfriendly
django-unfriendly copied to clipboard
The unfriendliest urls in town! Django app that obfuscates urls and allows your application to natively execute the original view. If you're unsure why this is cool, you probably don't need it. :)
If i use csrf_exempt in unfriendly urls its working fine or i have to disable CsrfViewMiddleware. Using csrf_exempt in APP views throwing error "Forbidden (CSRF token missing or incorrect.)"
When I send GET parameters with the obfuscated URL like http://yoursite.com/u/E5v4uxuNSA8I2is33c6V8lqFTcdv_IxPLDGG/?param=Hello¶m2=Bye and I debug the request, the URL is passing without any parameter, it seems like they were ignored in...