Thanks for the reply.
I have a link labeled “Link your Patreon account” that goes to an url like this:
www.patreon.com/oauth2/authorize
?response_type=code
&client_id=<your_client_id>
&redirect_uri=<your_redirect_uri>
I am using Flow router that doesn’t support server routes.
How do I read the code query param when Patreon redirects back to my Meteor app?
https://mymeteorapp.com/custom-uri
?code=<single_use_code>
&state=<string>
Then I have to call an http api via POST method,
How is this done with Meteor? axios? fetch?
Thanks for your reply, you’ve saved me a couple of time in the past.