The first step in setting up Stripe Connect (standalone account) is to ask the user permission, thus connecting the user.
This can be achieved by visting the url:
https://connect.stripe.com/oauth/authorize?response_type=code&client_id=[MY-CLIENT-ID]&scope=read_write
After the user has granted permission, the user will be redirected to an url of reference with parameters in it:
my.urlofreference.com/#!/page/account?scope=read_write&code=[AN-ACCESS_CODE]
Now my question is, how I can capture this [AN-ACCESS-CODE]
when the user
visits my redirect url my.urlofreference.com/#!/page/account
Thanks in advance!