此错误通常是由于前端代码中使用了错误的redirectUri参数所致。应确保redirectUri参数与注册应用程序时指定的重定向URI相匹配。在Vue.js应用程序中,可以在vue-router的路由配置中添加mode: 'history'来解决这个问题。例如:
const router = new VueRouter({
mode: 'history', // 添加这行
routes: [
{
path: '/',
name: 'home',
component: Home
}
]
})