$pgApiKey = wtkGetPost('apiKey');
$pgRefreshURL = $gloWebBaseURL . '/admin/?p=cancel&apiKey=' . $pgApiKey;
$pgReturnURL = $gloWebBaseURL . '/admin/?p=thanks&apiKey=' . $pgApiKey;
$pgResponse = $stripe->accountLinks->create([
'account' => $pgStripeAcctId,
'refresh_url' => $pgRefreshURL,
'return_url' => $pgReturnURL,
'type' => 'account_onboarding',
]
);
This would then expect you to have **cancel.htm** and **thanks.htm** files in your /admin directory. Then in your /admin/index.php you would simply add this one line in order to receive the request, pull in the HTML into your /wtk/htm/spa.htm template and hide/unhide the proper divs and menu navigation.
wtkSPArestart($pgHtm); // only triggered when returning from outside APIs
The **wtkSPArestart** will only do anything if all the following criteria are met:
* $gloSiteDesign PHP variable is set to 'SPA' (which always is the case in the /admin folder)
* apiKey parameter is passed
* p parameter is passed
If any one of those parameters are not set, then nothing happens. If all are set but the apiKey is not valid, then the [[https://wizardstoolkit.com/docs/files/wtk-lib-utils.html#function_wtkDeadPage|wtkDeadPage]] function is called which ends the user's session.
When all parameters are passed and the apiKey is valid, the HTML file will be pulled in and displayed as the mainPage from your /wtk/htm/spa.htm file. The valid apiKey allows skipping re-logging in.
For example the thanks.htm page could look like this.
Authorization Success!
Your connection to Stripe has succeeded.