I am using the following React component to connect with PayPal (AAC).
<AACComponent
clientId="<client_id>"
merchantId="<Merchant Account ID>"
env="<sandbox/production>"
pageType="<signup/login>"
onLogin={onLogin}
/>
I have been using this for several months and it returns the users auth token which is then used to get their paypal ID. Yesterday it started giving the following error:
Version+information+is+unavailable+for+key+aac_jws_keypair
The flow is as follows:
- User selects "Continue with PayPal" on my website
- They are redirected to officially sign in with PayPal
- They login successfully
- PayPal redirects to my app with the error:
{err: Version+information+is+unavailable+for+key+aac_jws_keypair}
There is no error code, only that one line
What is supposed to happen: It is supposed to redirect with the auth token, and it has been doing so for months. It stopped working a few days ago. I have not updated or changed anything.
This is all the error says and I cannot get in touch with anyone at PayPal to resolve this. My app is essentially broken right now due to this. Anyone else dealt with this error?
Additional info: I implemented AAC for React with this PayPal documentation