Ezequiel Santos
Ezequiel Santos

Reputation: 187

There any way to open *UberEats* app in a specific restaurant page using URL Schemes or anything else?

There any way to open UberEats app in a specific restaurant page using URL Schemes, Deep link, SDK or anything else?

Upvotes: 0

Views: 3236

Answers (2)

Lasharela
Lasharela

Reputation: 1547

For me this works:

ubereats://promo/apply?client_id=${uberEatsClientKey}&promoCode=${PromoCode}

It's the same as Uber. You can check the documentation of Uber.

Upvotes: 0

Denis Oliveira
Denis Oliveira

Reputation: 582

I found that and works with current version. Url schema:

ubereats://

on the current app you can share a store item and the deeplink is:

ubereats://store/browse?client_id=eats&storeUUID={STORE_UUID}&itemUUID={ITEM_UUID}

or simply open the store:

ubereats://store/browse?client_id=eats&storeUUID={STORE_UUID}

or apply a promo code:

ubereats://promo/apply?client_id=eats&promoCode={PROMO_CODE}

I hope to help

Upvotes: 3

Related Questions