diff --git a/docs/pbc/all/payment-service-provider/202311.0/base-shop/third-party-integrations/stripe/install-and-configure-stripe-prerequisites.md b/docs/pbc/all/payment-service-provider/202311.0/base-shop/third-party-integrations/stripe/install-and-configure-stripe-prerequisites.md index add039ca460..c665ba3f4db 100644 --- a/docs/pbc/all/payment-service-provider/202311.0/base-shop/third-party-integrations/stripe/install-and-configure-stripe-prerequisites.md +++ b/docs/pbc/all/payment-service-provider/202311.0/base-shop/third-party-integrations/stripe/install-and-configure-stripe-prerequisites.md @@ -161,7 +161,7 @@ class MessageBrokerConfig extends SprykerMessageBrokerConfig } ``` -5. In in `src/Pyz/Zed/Oms/OmsDependencyProvider.php`, add or updated the OMS config: +5. In `src/Pyz/Zed/Oms/OmsDependencyProvider.php`, add or update the OMS config: ```php @@ -193,6 +193,30 @@ use Spryker\Zed\SalesPayment\Communication\Plugin\Oms\SendCancelPaymentMessageCo ``` +6. In `src/Pyz/Zed/Payment/PaymentDependencyProvider.php`, add or update the following plugins: + + +```php +// ... + +use Spryker\Zed\OauthClient\Communication\Plugin\Payment\AccessTokenPaymentAuthorizeRequestExpanderPlugin; + + + // ... + + /** + * @return array + */ + protected function getPaymentAuthorizeRequestExpanderPlugins(): array + { + return [ + //... + new AccessTokenPaymentAuthorizeRequestExpanderPlugin(), + ]; + } + +``` + ## Next step [Connect and configure Stripe](/docs/pbc/all/payment-service-provider/{{page.version}}/base-shop/third-party-integrations/stripe/connect-and-configure-stripe.html)