如何使用交易 API 进行非付费 table 预订 google 操作?
How do I use Transactions API for non paid table booking google action?
所以我正在执行一个 google 操作,用户可以在其中预订 table 我完成了它并提交审核它被拒绝了,他们说我的技能必须使用交易API 对于非付费预订 table 那么我该怎么做呢?
早上好,吉格尔!如果您的操作不需要或不接受付款,您可以将营销重新构建为 "reservations" 应用程序,您的操作会询问以下内容:
"What kind of food are you in the mood for?"(用户说,"Mexican food")
"Ok, I can make a reservation at a nearby Mexican restaurant. To do that, I'll need to know your approximate location. Is that alright?"(有关实施细节,请参阅 Permissions)
(点击 Yelp API 或 Google 地图 API 以查找用户位置附近评分最高的墨西哥餐馆列表。)
"Ok, Yelp's top rated Mexican restaurant nearby is Super Awesome Mexican Food on Sixth Street. Would you like to make a reservation?"(用户说是)
"How many people are in your party?"(用户说,“2”)
"Ok. A table for two is available at [list like 7 pm, 7:30 pm, 8:00 pm, etc]. Which time would you like to reserve?"(用户说,"Seven thirty")
"Ok, I'll need an email to finalize your reservation. Which address should I use?"
"Ok, your table is reserved, and an email has been sent to your inbox and the restaurant. Please show the email to the host when you arrive. Bon appetit!"
既然你说你的应用程序是非付费的,这似乎是在不处理交易或金钱的情况下获得相同的功能。我猜 Google 的审查小组对 "booking" 这个词有疑问,这意味着金钱交换。
所以我正在执行一个 google 操作,用户可以在其中预订 table 我完成了它并提交审核它被拒绝了,他们说我的技能必须使用交易API 对于非付费预订 table 那么我该怎么做呢?
早上好,吉格尔!如果您的操作不需要或不接受付款,您可以将营销重新构建为 "reservations" 应用程序,您的操作会询问以下内容:
"What kind of food are you in the mood for?"(用户说,"Mexican food")
"Ok, I can make a reservation at a nearby Mexican restaurant. To do that, I'll need to know your approximate location. Is that alright?"(有关实施细节,请参阅 Permissions)
(点击 Yelp API 或 Google 地图 API 以查找用户位置附近评分最高的墨西哥餐馆列表。)
"Ok, Yelp's top rated Mexican restaurant nearby is Super Awesome Mexican Food on Sixth Street. Would you like to make a reservation?"(用户说是)
"How many people are in your party?"(用户说,“2”)
"Ok. A table for two is available at [list like 7 pm, 7:30 pm, 8:00 pm, etc]. Which time would you like to reserve?"(用户说,"Seven thirty")
"Ok, I'll need an email to finalize your reservation. Which address should I use?"
"Ok, your table is reserved, and an email has been sent to your inbox and the restaurant. Please show the email to the host when you arrive. Bon appetit!"
既然你说你的应用程序是非付费的,这似乎是在不处理交易或金钱的情况下获得相同的功能。我猜 Google 的审查小组对 "booking" 这个词有疑问,这意味着金钱交换。