ชำระเงินโดยไม่ลงชื่อเข้าใช้

การชำระเงินโดยไม่ลงชื่อเข้าใช้เป็นช่องทางที่ผู้ใช้สั่งซื้อกับพาร์ทเนอร์ผ่าน Google ได้ ไม่ว่าจะเข้าสู่ระบบบัญชี Google หรือไม่ก็ตาม

หากต้องการตรวจสอบว่ามีการสั่งซื้อของผู้ใช้ในฐานะผู้มาเยือนหรือเข้าสู่ระบบบัญชี Google ของผู้ใช้ ให้ตรวจสอบช่อง emailVerified ภายใน finalOrder.cart.extension.contact ใน SubmitOrderRequestMessage คำสั่งซื้อของผู้ใช้ที่เข้าสู่ระบบบัญชี Google จะมีemailVerified ตั้งค่าเป็น "จริง" ส่วนคำสั่งซื้อของผู้ใช้ชั่วคราวจะไม่มีemailVerifiedเลย

คำสั่งซื้อจากลูกค้าที่ไม่ได้เข้าสู่ระบบ

{
  "finalOrder": {
    ...
    "cart": {
      ...
      "extension": {
        "@type": "type.googleapis.com/google.actions.v2.orders.FoodItemExtension",
        "contact": {
          "displayName": "Lovefood Ordering",
          "email": "ilovefood@example.com",
          "phoneNumber": "+16501234567",
          "firstName": "Lovefood",
          "lastName": "Ordering"
        }
      }
    }
  }
}

คำสั่งซื้อที่เข้าสู่ระบบ

{
  "finalOrder": {
    ...
    "cart": {
      ...
      "extension": {
        "@type": "type.googleapis.com/google.actions.v2.orders.FoodItemExtension",
        "contact": {
          "displayName": "Lovefood Ordering",
          "email": "ilovefood@example.com",
          "phoneNumber": "+16501234567",
          "firstName": "Lovefood",
          "lastName": "Ordering",
          "emailVerified": true
        }
      }
    }
  }
}