作为 Action Center 的端到端预订集成的一部分,您可以为可能需要付款的所有交易启用将任何预付款、无故缺席费或预付款商品目录关联到您的预订页面。通过这种方式启用付款功能后,您可以在指定的预订页面上处理整个预订流程和交易。
资格要求
若要为特定预订添加付款,您必须满足以下前提条件:
付款重定向实施步骤
从“付款(旧版)”迁移到“付款重定向”的步骤
付款重定向和付款(旧版)在 Feed 定义方面大多相同,合作伙伴可以重复使用现有实现来启用付款重定向。在旧版付款方式下,Google 会负责付款处理,并使用 Feed 中提供的详细信息发送付款。使用付款重定向后,Google 将不再处理您的付款,因此您应从 Feed 中移除该交易所需的所有配置。
迁移所需的步骤
- Google 会使用商家 Feed 中的
tokenize_config
字段来处理付款。此字段已不再需要,应予以移除。 - (可选)移除了预订服务器接受
payment_method_token
对象的功能。 - 按照付款重定向实现步骤中的说明操作。
“付款(旧版)”和“付款重定向”之间的 Feed 区别:
端到端付款商家示例
{ "merchant": [ { "merchant_id": "dining-A", "name": "The Noodle Shop", "telephone": "+1 123-456-7890", "url": "www.diningAspublicsite.com", "tax_rate": { "micro_percent": 6750000 }, "tokenization_config": { "tokenization_parameter": { "stripe:publishableKey": "merch_live_5ALFBK23V29384", "gateway": "stripe", "stripe:version": "2017-08-15" } }, "geo": { "latitude": 37.422113, "longitude": -122.084041, "address": { "country": "US", "region": "CA", "postal_code": "94043", "street_address": "1897 Landings Dr", "locality": "Mountain View" } }, "category": "restaurant" } ] }
付款重定向商家示例
{ "merchant": [ { "merchant_id": "dining-A", "name": "The Noodle Shop", "telephone": "+1 123-456-7890", "url": "www.diningAspublicsite.com", "tax_rate": { "micro_percent": 6750000 }, "geo": { "latitude": 37.422113, "longitude": -122.084041, "address": { "country": "US", "region": "CA", "postal_code": "94043", "street_address": "1897 Landings Dr", "locality": "Mountain View" } }, "category": "restaurant" } ] }