Django escapes Twitter URLS in a way that Twitter doesn’t like:
for example http://twitter.com/#!/bugspy becomes http://twitter.com/#%21%2Fbugspy
And twitter won’t serve it.
How this can be fixed (without explicitly in the code replacing the %21%2F with !/) ?
What version of django are you using? In django 1.3 it works fine.
And this url work fine on twitter.
Also you can look at this snipept : http://djangosnippets.org/snippets/1445/