alipay / alipay-sdk-nodejs-all

支付宝开放平台 Alipay SDK for Node.js
https://docs.open.alipay.com/54/103419/
Other
406 stars 62 forks source link

update URL for gateway #144

Open citcon-hao opened 1 month ago

citcon-hao commented 1 month ago

According to this document: https://global.alipay.com/docs/switch_domain_name

Screen Shot 2024-06-27 at 12 39 15

May I ask if the gateway: 'https://openapi.alipay.com/gateway.do' on line 210 in file: 'src/alipay.ts' needs to update to a new URL, or is this URL still valid for Alipay API?"

fengmk2 commented 1 month ago

you can change the gateway and endpoint to the global domain, e.g.:

const alipaySdk = new AlipaySdk({
  gateway: 'https://openapi-eu-global.alipayplus.com/gateway.do',
  endpoint: 'https://openapi-eu-global.alipayplus.com',
});