User Tools

Site Tools


api_integration

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

api_integration [2022/09/04 22:40] – created wtkadminapi_integration [2025/03/29 15:56] (current) – added code-php around code wtkadmin
Line 25: Line 25:
     * wtkHtmShowTwitter     * wtkHtmShowTwitter
  
-Currently the **Stripe** API integration is being worked on and should be added to the Wizard's Toolkit by June 2022.+Currently the **Stripe** API integration is in development - let us know if you need this.
  
 ===== Returning to SPA from APIs ===== ===== Returning to SPA from APIs =====
Line 33: Line 33:
 The goal is to allow a user who is already logged in to your website or app to use an API to go to an outside website then return without having to re-login.  For example when using PayPal or Stripe and the user is taken to their servers for payment processing and you pass them the URL to return to upon either cancellation or success.  The **apiKey** is how a SPA knows that a user is signed-in so you pass that and the page you want them to return to (via the **p** parameter) to the outside provider.  For example in your PHP for calling **Stripe** to set up account links you would do the following: The goal is to allow a user who is already logged in to your website or app to use an API to go to an outside website then return without having to re-login.  For example when using PayPal or Stripe and the user is taken to their servers for payment processing and you pass them the URL to return to upon either cancellation or success.  The **apiKey** is how a SPA knows that a user is signed-in so you pass that and the page you want them to return to (via the **p** parameter) to the outside provider.  For example in your PHP for calling **Stripe** to set up account links you would do the following:
  
 +<code php>
     $pgApiKey = wtkGetPost('apiKey');     $pgApiKey = wtkGetPost('apiKey');
     $pgRefreshURL = $gloWebBaseURL . '/admin/?p=cancel&apiKey=' . $pgApiKey;     $pgRefreshURL = $gloWebBaseURL . '/admin/?p=cancel&apiKey=' . $pgApiKey;
Line 43: Line 44:
       ]       ]
     );     );
 +</code>
  
 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. 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.
  
 +<code php>
   wtkSPArestart($pgHtm); // only triggered when returning from outside APIs   wtkSPArestart($pgHtm); // only triggered when returning from outside APIs
- +</code>
  
 The **wtkSPArestart** will only do anything if all the following criteria are met: The **wtkSPArestart** will only do anything if all the following criteria are met:
Line 63: Line 64:
 For example the thanks.htm page could look like this. For example the thanks.htm page could look like this.
  
 +<code php>
   <div class="container">   <div class="container">
       <br><br>       <br><br>
Line 72: Line 74:
       </div>       </div>
   </div>   </div>
 +</code>
api_integration.1662331254.txt.gz · Last modified: 2022/09/04 22:40 by wtkadmin