I am working with this.$route.query
and the object looks like this:
{ 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" }
Is there a way to convert it to this format?
/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
I'm wondering if there's a method in Vue or Js that can help achieve this transformation.