Currently, I am utilizing hash mode in the VUE router and it is functioning properly. However, while working with Twitter in my project, I encountered an issue when trying to define a callback URL that included a hash, such as
https://{BASE_URL}/#/confirm?auth=qwertyui
. Twitter is rejecting this URL for use as a callback due to the presence of the hash. I am seeking suggestions on how to incorporate a callback URL with a hash into Twitter. Any advice would be greatly appreciated. Thank you.
Here is my route to the component:
{
path: '/confirm',
name: 'confirmation',
component: () => import('----componnet----')
}