I have multiple Tweet buttons in the site each one inside a “page” with a different hashbang ( “#!foo/bar”, “#!lorem/ipsum” ) and I’m using the “data-counturl” like: data-counturl="http://example.com/#!foo/bar" (same value as I’m using for “data-url” as well)
I would expect the tweet button to treat them as different pages altogether (since they are indeed different pages on my site) and/or do a request for “?escaped_fragment=foo/bar” and “?escaped_fragment=lorem/ipsum” to detect the redirects instead of simply displaying the tweet count of the index page for all of them.
PS: My application really needs the hashbang since it should work the same way in browsers that doesn’t support the HTML5 history API (update content dynamically and have deep links).