I have this.$route.query in which the object is:
{ next: "/api/o/authorize/?client_id=xxx", nonce: "bee", redirect_uri: "http://X.app.net/oauth/providers/appZ/callback", response_type: "code", scope: "read", state: "123" }
How to convert it to:
/api/o/authorize/?client_id=xxx&nonce=bee&redirect_uri=http://X.app.net/oauth/providers/appZ/callback&response_type=code&scope=read&state=123
Maybe I missed something and there is a method for this in Vue or Js?
querymeans that the whole thing is a query,?next=/api/o/authorize...&nonce=bee&.... Notice that a path innextneeds to be URL encoded. Consider explaining your case. It's unclear why you expectnextto become a path.